@@ -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 |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public static function splitTagAndContent($subject, &$matches) |
47 | 47 | { |
48 | - $regex = '/' . self::TAG_REGEX . self::DESCRIPTION_REGEX . '/'; |
|
48 | + $regex = '/'.self::TAG_REGEX.self::DESCRIPTION_REGEX.'/'; |
|
49 | 49 | return preg_match($regex, $subject, $matches); |
50 | 50 | } |
51 | 51 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function __toString() |
94 | 94 | { |
95 | - return '@' . $this->getTag() . ' ' . $this->getContent(); |
|
95 | + return '@'.$this->getTag().' '.$this->getContent(); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function hasVariableAndDescription(&$matches) |
124 | 124 | { |
125 | - $regex = '/' . self::VARIABLE_OR_WORD_REGEX . self::DESCRIPTION_REGEX . '/'; |
|
125 | + $regex = '/'.self::VARIABLE_OR_WORD_REGEX.self::DESCRIPTION_REGEX.'/'; |
|
126 | 126 | return preg_match($regex, $this->getContent(), $matches); |
127 | 127 | } |
128 | 128 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | public function hasTypeVariableAndDescription(&$matches) |
138 | 138 | { |
139 | - $regex = '/' . self::TYPE_REGEX . self::VARIABLE_REGEX . self::DESCRIPTION_REGEX . '/'; |
|
139 | + $regex = '/'.self::TYPE_REGEX.self::VARIABLE_REGEX.self::DESCRIPTION_REGEX.'/'; |
|
140 | 140 | return preg_match($regex, $this->getContent(), $matches); |
141 | 141 | } |
142 | 142 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | */ |
150 | 150 | public function hasWordAndDescription(&$matches) |
151 | 151 | { |
152 | - $regex = '/' . self::WORD_REGEX . self::DESCRIPTION_REGEX . '/'; |
|
152 | + $regex = '/'.self::WORD_REGEX.self::DESCRIPTION_REGEX.'/'; |
|
153 | 153 | return preg_match($regex, $this->getContent(), $matches); |
154 | 154 | } |
155 | 155 | } |