Passed
Push — master ( 57e5c3...5aee50 )
by Sys
37:40 queued 05:58
created
Category
src/Generator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
275 275
         $phrases = explode('.', $description);
276 276
         $phrases = array_filter(
277 277
             $phrases,
278
-            function ($phrase) {
278
+            function($phrase) {
279 279
                 return (false !== stripos($phrase, 'returns') or false !== stripos($phrase, 'is returned'));
280 280
             }
281 281
         );
Please login to merge, or discard this patch.
src/StubCreator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
             $fields = $method['fields'];
197 197
             usort(
198 198
                 $fields,
199
-                function ($a, $b) {
199
+                function($a, $b) {
200 200
                     return $b['required'] - $a['required'];
201 201
                 }
202 202
             );
Please login to merge, or discard this patch.