| @@ -255,7 +255,7 @@ | ||
| 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 | ); | 
| @@ -30,7 +30,7 @@ | ||
| 30 | 30 | /** | 
| 31 | 31 | * @var boolean | 
| 32 | 32 | * @var string | 
| 33 | - */ | |
| 33 | + */ | |
| 34 | 34 | protected $docBlockIsParsed = false; | 
| 35 | 35 | |
| 36 | 36 | /** | 
| @@ -227,7 +227,7 @@ discard block | ||
| 227 | 227 | */ | 
| 228 | 228 | public function replaceRawAnnotations($annotationData) | 
| 229 | 229 |      { | 
| 230 | - $this->otherAnnotations = new AnnotationData((array) $annotationData); | |
| 230 | + $this->otherAnnotations = new AnnotationData((array)$annotationData); | |
| 231 | 231 | return $this; | 
| 232 | 232 | } | 
| 233 | 233 | |
| @@ -309,7 +309,7 @@ discard block | ||
| 309 | 309 | // Convert to an array and merge if there are multiple | 
| 310 | 310 | // instances of the same annotation defined. | 
| 311 | 311 |          if (isset($this->otherAnnotations[$name])) { | 
| 312 | - $content = array_merge((array) $this->otherAnnotations[$name], (array)$content); | |
| 312 | + $content = array_merge((array)$this->otherAnnotations[$name], (array)$content); | |
| 313 | 313 | } | 
| 314 | 314 | $this->otherAnnotations[$name] = $content; | 
| 315 | 315 | } | 
| @@ -487,7 +487,7 @@ discard block | ||
| 487 | 487 | $opts = $this->options()->getValues(); | 
| 488 | 488 |          foreach ($opts as $name => $defaultValue) { | 
| 489 | 489 |              if ($defaultValue === true) { | 
| 490 | - $key = 'no-' . $name; | |
| 490 | + $key = 'no-'.$name; | |
| 491 | 491 |                  if (!array_key_exists($key, $opts)) { | 
| 492 | 492 | $description = "Negate --$name option."; | 
| 493 | 493 | $this->options()->add($key, $description, false); | 
| @@ -691,8 +691,8 @@ discard block | ||
| 691 | 691 | */ | 
| 692 | 692 | protected function convertName($camel) | 
| 693 | 693 |      { | 
| 694 | - $splitter="-"; | |
| 695 | -        $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); | |
| 694 | + $splitter = "-"; | |
| 695 | +        $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); | |
| 696 | 696 |          $camel = preg_replace("/$splitter/", ':', $camel, 1); | 
| 697 | 697 | return strtolower($camel); | 
| 698 | 698 | } | 
| @@ -247,7 +247,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 360 | 360 | $path = $this->joinParts( | 
| 361 | 361 | '/', | 
| 362 | 362 | $pathParts, | 
| 363 | -            function ($item) { | |
| 363 | +            function($item) { | |
| 364 | 364 | return !empty($item); | 
| 365 | 365 | } | 
| 366 | 366 | ); | 
| @@ -377,7 +377,7 @@ discard block | ||
| 377 | 377 | protected function joinParts($delimiter, $parts, $filterFunction) | 
| 378 | 378 |      { | 
| 379 | 379 | $parts = array_map( | 
| 380 | -            function ($item) use ($delimiter) { | |
| 380 | +            function($item) use ($delimiter) { | |
| 381 | 381 | return rtrim($item, $delimiter); | 
| 382 | 382 | }, | 
| 383 | 383 | $parts | 
| @@ -34,7 +34,7 @@ | ||
| 34 | 34 | */ | 
| 35 | 35 | public function get($key) | 
| 36 | 36 |      { | 
| 37 | - return (array) $this->dataStore->get($key); | |
| 37 | + return (array)$this->dataStore->get($key); | |
| 38 | 38 | } | 
| 39 | 39 | |
| 40 | 40 | /** | 
| @@ -32,7 +32,7 @@ | ||
| 32 | 32 | public function __construct($values = [], $defaultDefault = null) | 
| 33 | 33 |      { | 
| 34 | 34 | $this->values = $values; | 
| 35 | -        $this->hasDefault = array_filter($this->values, function ($value) { | |
| 35 | +        $this->hasDefault = array_filter($this->values, function($value) { | |
| 36 | 36 | return isset($value); | 
| 37 | 37 | }); | 
| 38 | 38 | $this->descriptions = []; | 
| @@ -20,7 +20,7 @@ | ||
| 20 | 20 | */ | 
| 21 | 21 | public function hasReplaceCommandHook() | 
| 22 | 22 |      { | 
| 23 | - return (bool) count($this->getReplaceCommandHooks()); | |
| 23 | + return (bool)count($this->getReplaceCommandHooks()); | |
| 24 | 24 | } | 
| 25 | 25 | |
| 26 | 26 | /** | 
| @@ -136,7 +136,7 @@ | ||
| 136 | 136 |          if ($value === true) { | 
| 137 | 137 | // Check if the --no-* option exists. Note that none of the other | 
| 138 | 138 | // alteration apply in the $value == true case, so we can exit early here. | 
| 139 | - $negation_key = 'no-' . $option; | |
| 139 | + $negation_key = 'no-'.$option; | |
| 140 | 140 | return array_key_exists($negation_key, $options) && $options[$negation_key]; | 
| 141 | 141 | } | 
| 142 | 142 | |
| @@ -246,7 +246,7 @@ discard block | ||
| 246 | 246 | // can never be commands. | 
| 247 | 247 | $commandMethodNames = array_filter( | 
| 248 | 248 | get_class_methods($classNameOrInstance) ?: [], | 
| 249 | -            function ($m) use ($classNameOrInstance) { | |
| 249 | +            function($m) use ($classNameOrInstance) { | |
| 250 | 250 | $reflectionMethod = new \ReflectionMethod($classNameOrInstance, $m); | 
| 251 | 251 |                  return !$reflectionMethod->isStatic() && !preg_match('#^_#', $m); | 
| 252 | 252 | } | 
| @@ -258,7 +258,7 @@ discard block | ||
| 258 | 258 |                  if (!static::isCommandOrHookMethod($commandInfo, $this->getIncludeAllPublicMethods())) { | 
| 259 | 259 | $commandInfo->invalidate(); | 
| 260 | 260 | } | 
| 261 | - $commandInfoList[$commandMethodName] = $commandInfo; | |
| 261 | + $commandInfoList[$commandMethodName] = $commandInfo; | |
| 262 | 262 | } | 
| 263 | 263 | } | 
| 264 | 264 | |
| @@ -279,7 +279,7 @@ discard block | ||
| 279 | 279 | return $this->createSelectedCommandsFromClassInfo( | 
| 280 | 280 | $commandInfoList, | 
| 281 | 281 | $commandFileInstance, | 
| 282 | -            function ($commandInfo) use ($includeAllPublicMethods) { | |
| 282 | +            function($commandInfo) use ($includeAllPublicMethods) { | |
| 283 | 283 | return static::isCommandMethod($commandInfo, $includeAllPublicMethods); | 
| 284 | 284 | } | 
| 285 | 285 | ); | 
| @@ -289,7 +289,7 @@ discard block | ||
| 289 | 289 |      { | 
| 290 | 290 | $commandInfoList = $this->filterCommandInfoList($commandInfoList, $commandSelector); | 
| 291 | 291 | return array_map( | 
| 292 | -            function ($commandInfo) use ($commandFileInstance) { | |
| 292 | +            function($commandInfo) use ($commandFileInstance) { | |
| 293 | 293 | return $this->createCommand($commandInfo, $commandFileInstance); | 
| 294 | 294 | }, | 
| 295 | 295 | $commandInfoList | 
| @@ -35,7 +35,7 @@ | ||
| 35 | 35 | // If there is no 'use' statement for the className, then | 
| 36 | 36 | // generate an effective classname from the namespace | 
| 37 | 37 |          if (!isset($this->classCache[$filename][$className])) { | 
| 38 | - $this->classCache[$filename][$className] = $namespaceName . '\\' . $className; | |
| 38 | + $this->classCache[$filename][$className] = $namespaceName.'\\'.$className; | |
| 39 | 39 | } | 
| 40 | 40 | |
| 41 | 41 | fclose($handle); |