Completed
Branch master (f0da9f)
by Greg
02:59
created
src/AnnotatedCommand.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -12,6 +12,10 @@  discard block
 block discarded – undo
12 12
     protected $commandProcessor;
13 13
     protected $annotationData;
14 14
 
15
+    /**
16
+     * @param string $name
17
+     * @param CommandProcessor $commandProcessor
18
+     */
15 19
     public function __construct(
16 20
         $name,
17 21
         $commandCallback,
@@ -30,6 +34,9 @@  discard block
 block discarded – undo
30 34
         $this->specialParameterClasses = $specialParameterClasses;
31 35
     }
32 36
 
37
+    /**
38
+     * @param InputInterface $input
39
+     */
33 40
     protected function getArgsWithPassThrough($input)
34 41
     {
35 42
         $args = $input->getArguments();
@@ -45,6 +52,9 @@  discard block
 block discarded – undo
45 52
         return $args;
46 53
     }
47 54
 
55
+    /**
56
+     * @param PassThroughArgsInput $input
57
+     */
48 58
     protected function appendPassThroughArgs($input, $args)
49 59
     {
50 60
         $passThrough = $input->getPassThroughArgs();
Please login to merge, or discard this patch.
src/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/CommandFileDiscovery.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
         return $this->joinParts(
268 268
             '\\',
269 269
             $namespaceParts,
270
-            function ($item) {
270
+            function($item) {
271 271
                 return !is_numeric($item) && !empty($item);
272 272
             }
273 273
         );
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
         return $this->joinParts(
287 287
             '/',
288 288
             $pathParts,
289
-            function ($item) {
289
+            function($item) {
290 290
                 return !empty($item);
291 291
             }
292 292
         );
Please login to merge, or discard this patch.
src/AnnotatedCommandFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         // set or setup.
68 68
         $commandMethodNames = array_filter(
69 69
             get_class_methods($classNameOrInstance) ?: [],
70
-            function ($m) {
70
+            function($m) {
71 71
                 return !preg_match('#^(_|get[A-Z]|set[A-Z])#', $m);
72 72
             }
73 73
         );
Please login to merge, or discard this patch.