@@ -267,7 +267,7 @@ discard block |
||
| 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 |
||
| 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 | ); |
@@ -67,7 +67,7 @@ |
||
| 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 | ); |
@@ -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 | { |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | public function addValidator(ValidatorInterface $validator, $name = '*', $stage = self::PRIMARY_STAGE) |
| 53 | 53 | { |
| 54 | 54 | $this->checkValidStage($stage); |
| 55 | - $this->hooks[$name][$stage . self::ARGUMENT_VALIDATOR][] = $validator; |
|
| 55 | + $this->hooks[$name][$stage.self::ARGUMENT_VALIDATOR][] = $validator; |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | public function addResultProcessor(ProcessResultInterface $resultProcessor, $name = '*', $stage = self::PRIMARY_STAGE) |
| 66 | 66 | { |
| 67 | 67 | $this->checkValidStage($stage); |
| 68 | - $this->hooks[$name][$stage . self::PROCESS_RESULT][] = $resultProcessor; |
|
| 68 | + $this->hooks[$name][$stage.self::PROCESS_RESULT][] = $resultProcessor; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | public function addAlterResult(AlterResultInterface $resultAlterer, $name = '*', $stage = self::PRIMARY_STAGE) |
| 81 | 81 | { |
| 82 | 82 | $this->checkValidStage($stage); |
| 83 | - $this->hooks[$name][$stage . self::ALTER_RESULT][] = $resultAlterer; |
|
| 83 | + $this->hooks[$name][$stage.self::ALTER_RESULT][] = $resultAlterer; |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -332,7 +332,7 @@ discard block |
||
| 332 | 332 | { |
| 333 | 333 | $validStages = [self::PRE_STAGE, self::PRIMARY_STAGE, self::POST_STAGE]; |
| 334 | 334 | if (!in_array($stage, $validStages)) { |
| 335 | - throw new \Exception("Invalid stage '$stage' specified; must be one of " . implode(',', $validStages)); |
|
| 335 | + throw new \Exception("Invalid stage '$stage' specified; must be one of ".implode(',', $validStages)); |
|
| 336 | 336 | } |
| 337 | 337 | } |
| 338 | 338 | } |