Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
IonBazan committed Dec 14, 2020
1 parent 1eb39f4 commit af11360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Faker/Provider/ImageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public function testDownloadWithDefaults()
$file = Image::image(sys_get_temp_dir());
self::assertFileExists($file);
if (function_exists('getimagesize')) {
[$width, $height, $type, $attr] = getimagesize($file);
list($width, $height, $type, $attr) = getimagesize($file);
self::assertEquals(640, $width);
self::assertEquals(480, $height);
self::assertEquals(constant('IMAGETYPE_PNG'), $type);
Expand Down

0 comments on commit af11360

Please sign in to comment.