Completed
Push — master ( e72b8e...f3dcc0 )
by Greg
02:17
created
src/Parser/CommandInfo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -254,8 +254,8 @@
 block discarded – undo
254 254
 
255 255
     protected function convertName($camel)
256 256
     {
257
-        $splitter="-";
258
-        $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
257
+        $splitter = "-";
258
+        $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
259 259
         $camel = preg_replace("/$splitter/", ':', $camel, 1);
260 260
         return strtolower($camel);
261 261
     }
Please login to merge, or discard this patch.
src/AnnotatedCommandFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         // set or setup.
76 76
         $commandMethodNames = array_filter(
77 77
             get_class_methods($classNameOrInstance) ?: [],
78
-            function ($m) {
78
+            function($m) {
79 79
                 return !preg_match('#^(_|get[A-Z]|set[A-Z])#', $m);
80 80
             }
81 81
         );
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         return $this->createSelectedCommandsFromClassInfo(
98 98
             $commandInfoList,
99 99
             $commandFileInstance,
100
-            function ($commandInfo) use ($includeAllPublicMethods) {
100
+            function($commandInfo) use ($includeAllPublicMethods) {
101 101
                 return $includeAllPublicMethods || static::isCommandMethod($commandInfo);
102 102
             }
103 103
         );
Please login to merge, or discard this patch.
src/CommandFileDiscovery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      */
248 248
     protected function getSearchDepth()
249 249
     {
250
-        return $this->searchDepth <= 0 ? '== 0' : '<= ' . $this->searchDepth;
250
+        return $this->searchDepth <= 0 ? '== 0' : '<= '.$this->searchDepth;
251 251
     }
252 252
 
253 253
     /**
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
         return $this->joinParts(
342 342
             '\\',
343 343
             $namespaceParts,
344
-            function ($item) {
344
+            function($item) {
345 345
                 return !is_numeric($item) && !empty($item);
346 346
             }
347 347
         );
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         return $this->joinParts(
361 361
             '/',
362 362
             $pathParts,
363
-            function ($item) {
363
+            function($item) {
364 364
                 return !empty($item);
365 365
             }
366 366
         );
Please login to merge, or discard this patch.
src/Hooks/HookManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
     {
392 392
         $names = array_merge(
393 393
             (array)$names,
394
-            ($annotationData == null) ? [] : array_map(function ($item) {
394
+            ($annotationData == null) ? [] : array_map(function($item) {
395 395
                 return "@$item";
396 396
             }, $annotationData->keys())
397 397
         );
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
         $hooks = [];
413 413
         foreach ($stages as $stage) {
414 414
             foreach ((array)$names as $name) {
415
-                $hooks = array_merge($hooks, $this->getHook($name, $stage . $hook));
415
+                $hooks = array_merge($hooks, $this->getHook($name, $stage.$hook));
416 416
             }
417 417
         }
418 418
         return $hooks;
Please login to merge, or discard this patch.