Passed
Pull Request — master (#61)
by Daniel
06:31
created
src/EventListener/Imagine/ImagineEventListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function onStore(ImagineStoreEvent $event): void
40 40
     {
41 41
         $content = $event->binary->getContent();
42
-        [ $width, $height ] = getimagesizefromstring($content);
42
+        [$width, $height] = getimagesizefromstring($content);
43 43
         $fileSize = \strlen($content);
44 44
 
45 45
         $fileInfo = new FileInfo($event->path, $event->binary->getMimeType(), $fileSize, $width, $height, $event->filter);
Please login to merge, or discard this patch.