Passed
Branch release/v2.0.0 (40e5f2)
by Anatoly
03:56
created
src/Loader/AnnotationDirectoryLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
             }
228 228
         }
229 229
 
230
-        uasort($annotations, function ($a, $b) {
230
+        uasort($annotations, function($a, $b) {
231 231
             return $b->priority <=> $a->priority;
232 232
         });
233 233
 
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
@@ -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/OpenApi/OpenApi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
      */
156 156
     private function handleComponentSchemas() : void
157 157
     {
158
-        array_walk_recursive($this->description, function (&$value, $key) {
158
+        array_walk_recursive($this->description, function(&$value, $key) {
159 159
             if (!('$ref' === $key && null !== $value && class_exists($value))) {
160 160
                 return;
161 161
             }
Please login to merge, or discard this patch.