Passed
Pull Request — master (#32)
by Anatoly
02:45
created
src/Loader/AnnotationDirectoryLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
             }
125 125
         }
126 126
 
127
-        usort($annotations, function ($a, $b) {
127
+        usort($annotations, function($a, $b) {
128 128
             return $b->priority <=> $a->priority;
129 129
         });
130 130
 
Please login to merge, or discard this patch.
src/Loader/CollectableFileLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         $collect = new RouteCollector();
58 58
 
59 59
         foreach ($this->resources as $resource) {
60
-            (function () use ($resource) {
60
+            (function() use ($resource) {
61 61
                 require $resource;
62 62
             })->call($collect);
63 63
         }
Please login to merge, or discard this patch.