@@ -380,7 +380,7 @@ |
||
380 | 380 | } |
381 | 381 | |
382 | 382 | /** |
383 | - * @param $command |
|
383 | + * @param string $command |
|
384 | 384 | * |
385 | 385 | * @return mixed |
386 | 386 | */ |
@@ -72,6 +72,9 @@ |
||
72 | 72 | return "'".str_replace("'", "'\\''", $argument)."'"; |
73 | 73 | } |
74 | 74 | |
75 | + /** |
|
76 | + * @param string $char |
|
77 | + */ |
|
75 | 78 | private static function isSurroundedBy($arg, $char) |
76 | 79 | { |
77 | 80 | return 2 < strlen($arg) && $char === $arg[0] && $char === $arg[strlen($arg) - 1]; |
@@ -63,6 +63,9 @@ discard block |
||
63 | 63 | $this->dir = getcwd(); |
64 | 64 | } |
65 | 65 | |
66 | + /** |
|
67 | + * @param string $errorType |
|
68 | + */ |
|
66 | 69 | protected function errorCondtion($msg, $errorType) |
67 | 70 | { |
68 | 71 | $this->errorConditions[$msg] = $errorType; |
@@ -110,7 +113,7 @@ discard block |
||
110 | 113 | } |
111 | 114 | |
112 | 115 | /** |
113 | - * @param array $argv |
|
116 | + * @param string[] $argv |
|
114 | 117 | * @param null|string $appName |
115 | 118 | * @param null|string $appVersion |
116 | 119 | * @param null|\Symfony\Component\Console\Output\OutputInterface $output |
@@ -133,7 +136,7 @@ discard block |
||
133 | 136 | * @param null|\Symfony\Component\Console\Input\InputInterface $input |
134 | 137 | * @param null|\Symfony\Component\Console\Output\OutputInterface $output |
135 | 138 | * @param null|\Robo\Application $app |
136 | - * @param array[] $commandFiles |
|
139 | + * @param null|string $commandFiles |
|
137 | 140 | * @param null|ClassLoader $classLoader |
138 | 141 | * |
139 | 142 | * @return int |