Passed
Push — php84 ( 1f307a...473b9d )
by Akihito
01:43
created
src/Psr4List.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
             $file = str_replace('\\', '/', $item->getPathname());
43 43
             $namePath = str_replace('/', '\\', substr(substr($file, strlen($path) + 1), 0, -4));
44 44
             $class = $prefix . '\\' . $namePath;
45
-            if (! class_exists($class) && ! interface_exists($class)) {
45
+            if ( ! class_exists($class) && ! interface_exists($class)) {
46 46
                 continue;
47 47
             }
48 48
 
49
-            yield [$class, $file];
49
+            yield [ $class, $file ];
50 50
         }
51 51
     }
52 52
 
Please login to merge, or discard this patch.