Passed
Push — master ( a5fb1c...659b35 )
by Anatoly
01:04 queued 10s
created
src/Loader/CollectableFileLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         );
87 87
 
88 88
         foreach ($this->resources as $resource) {
89
-            (function () use ($resource) {
89
+            (function() use ($resource) {
90 90
                 require $resource;
91 91
             })->call($collect);
92 92
         }
Please login to merge, or discard this patch.
src/Loader/DescriptorDirectoryLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@
 block discarded – undo
255 255
             $descriptors[$class] = $descriptor;
256 256
         }
257 257
 
258
-        uasort($descriptors, function ($a, $b) {
258
+        uasort($descriptors, function($a, $b) {
259 259
             return $b->getPriority() <=> $a->getPriority();
260 260
         });
261 261
 
Please login to merge, or discard this patch.