Completed
Pull Request — master (#66)
by Greg
02:23
created
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/Hooks/HookManager.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
     {
256 256
         $names = array_merge(
257 257
             (array)$names,
258
-            ($annotationData == null) ? [] : array_map(function ($item) {
258
+            ($annotationData == null) ? [] : array_map(function($item) {
259 259
                 return "@$item";
260 260
             }, $annotationData->keys())
261 261
         );
Please login to merge, or discard this patch.
src/CommandFileDiscovery.php 1 patch
Spacing   +4 added lines, -4 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
         );
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
     protected function joinParts($delimiter, $parts, $filterFunction)
377 377
     {
378 378
         $parts = array_map(
379
-            function ($item) use ($delimiter) {
379
+            function($item) use ($delimiter) {
380 380
                 return rtrim($item, $delimiter);
381 381
             },
382 382
             $parts
Please login to merge, or discard this patch.
src/Parser/CommandInfo.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     {
144 144
         $this->name = $info_array['name'];
145 145
         $this->methodName = $info_array['method_name'];
146
-        $this->otherAnnotations = new AnnotationData((array) $info_array['annotations']);
146
+        $this->otherAnnotations = new AnnotationData((array)$info_array['annotations']);
147 147
         $this->arguments = new DefaultsWithDescriptions();
148 148
         $this->options = new DefaultsWithDescriptions();
149 149
         $this->aliases = $info_array['aliases'];
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
         $this->input_options = [];
171 171
         foreach ((array)$info_array['input_options'] as $i => $option) {
172
-            $option = (array) $option;
172
+            $option = (array)$option;
173 173
             $this->inputOptions[$i] = new InputOption(
174 174
                 $option['name'],
175 175
                 $option['shortcut'],
@@ -695,8 +695,8 @@  discard block
 block discarded – undo
695 695
      */
696 696
     protected function convertName($camel)
697 697
     {
698
-        $splitter="-";
699
-        $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
698
+        $splitter = "-";
699
+        $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
700 700
         $camel = preg_replace("/$splitter/", ':', $camel, 1);
701 701
         return strtolower($camel);
702 702
     }
Please login to merge, or discard this patch.