@@ -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 | ); |
@@ -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 |
@@ -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 | } |
@@ -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 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | protected function processCommandTag($tag) |
37 | 37 | { |
38 | 38 | if (!$tag->hasWordAndDescription($matches)) { |
39 | - throw new \Exception('Could not determine command name from tag ' . (string)$tag); |
|
39 | + throw new \Exception('Could not determine command name from tag '.(string)$tag); |
|
40 | 40 | } |
41 | 41 | $commandName = $matches['word']; |
42 | 42 | $this->commandInfo->setName($commandName); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | { |
119 | 119 | $lines = explode("\n", $tag->getContent()); |
120 | 120 | $usage = trim(array_shift($lines)); |
121 | - $description = static::removeLineBreaks(implode("\n", array_map(function ($line) { |
|
121 | + $description = static::removeLineBreaks(implode("\n", array_map(function($line) { |
|
122 | 122 | return trim($line); |
123 | 123 | }, $lines))); |
124 | 124 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | protected function processReturnTag($tag) |
140 | 140 | { |
141 | 141 | if (!$tag->hasWordAndDescription($matches)) { |
142 | - throw new \Exception('Could not determine return type from tag ' . (string)$tag); |
|
142 | + throw new \Exception('Could not determine return type from tag '.(string)$tag); |
|
143 | 143 | } |
144 | 144 | // TODO: look at namespace and `use` statments to make returnType a fqdn |
145 | 145 | $returnType = $matches['word']; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | // Trim all of the lines individually. |
180 | 180 | $lines = |
181 | 181 | array_map( |
182 | - function ($line) { |
|
182 | + function($line) { |
|
183 | 183 | return trim($line); |
184 | 184 | }, |
185 | 185 | $lines |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | // Everything up to the first blank line goes in the description. |
189 | 189 | $description = array_shift($lines); |
190 | 190 | while (!empty($lines) && !empty(trim($lines[0]))) { |
191 | - $description .= ' ' . array_shift($lines); |
|
191 | + $description .= ' '.array_shift($lines); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | // Everything else goes in the help. |