@@ -19,7 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * @var boolean |
21 | 21 | * @var string |
22 | - */ |
|
22 | + */ |
|
23 | 23 | protected $docBlockIsParsed; |
24 | 24 | |
25 | 25 | /** |
@@ -254,8 +254,8 @@ |
||
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 | } |
@@ -1,11 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Consolidation\AnnotatedCommand; |
3 | 3 | |
4 | -use Symfony\Component\Console\Command\Command; |
|
5 | -use Symfony\Component\Console\Input\InputInterface; |
|
6 | 4 | use Symfony\Component\Console\Output\OutputInterface; |
7 | 5 | use Symfony\Component\Console\Output\ConsoleOutputInterface; |
8 | - |
|
9 | 6 | use Consolidation\OutputFormatters\FormatterManager; |
10 | 7 | use Consolidation\OutputFormatters\FormatterOptions; |
11 | 8 | use Consolidation\AnnotatedCommand\Hooks\HookManager; |
@@ -150,7 +150,7 @@ |
||
150 | 150 | * should select the output format that is most appropriate |
151 | 151 | * for use in scripts (e.g. to pipe to another command). |
152 | 152 | * |
153 | - * @return string |
|
153 | + * @return boolean |
|
154 | 154 | */ |
155 | 155 | protected function getFormat($options) |
156 | 156 | { |
@@ -75,7 +75,7 @@ discard block |
||
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 |
||
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 | ); |
@@ -4,8 +4,6 @@ |
||
4 | 4 | use phpDocumentor\Reflection\DocBlock; |
5 | 5 | use phpDocumentor\Reflection\DocBlock\Tag\ParamTag; |
6 | 6 | use phpDocumentor\Reflection\DocBlock\Tag\ReturnTag; |
7 | -use Consolidation\AnnotatedCommand\Parser\CommandInfo; |
|
8 | -use Consolidation\AnnotatedCommand\Parser\DefaultsWithDescriptions; |
|
9 | 7 | |
10 | 8 | /** |
11 | 9 | * Given a class and method name, parse the annotations in the |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | protected function getSearchDepth() |
248 | 248 | { |
249 | - return $this->searchDepth <= 0 ? '== 0' : '< ' . $this->searchDepth; |
|
249 | + return $this->searchDepth <= 0 ? '== 0' : '< '.$this->searchDepth; |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | return $this->joinParts( |
341 | 341 | '\\', |
342 | 342 | $namespaceParts, |
343 | - function ($item) { |
|
343 | + function($item) { |
|
344 | 344 | return !is_numeric($item) && !empty($item); |
345 | 345 | } |
346 | 346 | ); |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | return $this->joinParts( |
360 | 360 | '/', |
361 | 361 | $pathParts, |
362 | - function ($item) { |
|
362 | + function($item) { |
|
363 | 363 | return !empty($item); |
364 | 364 | } |
365 | 365 | ); |