Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Sep 3, 2019
1 parent 69527b6 commit 2a0624f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Detector/PngDetector.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ final class PngDetector implements DetectorInterface
*/
public function detect(SplFileObject $file): ?ImageType
{
return$file->fread(4) === chr(0x89) . 'PNG' ? new ImageType(ImageFormat::PNG, MimeType::IMAGE_PNG) : null;
return $file->fread(4) === chr(0x89) . 'PNG' ? new ImageType(ImageFormat::PNG, MimeType::IMAGE_PNG) : null;
}
}

0 comments on commit 2a0624f

Please sign in to comment.