@@ -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 | ); |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | return []; |
179 | 179 | } |
180 | 180 | $className = get_class($commandFileInstance); |
181 | - $cache_data = (array) $this->getDataStore()->get($className); |
|
181 | + $cache_data = (array)$this->getDataStore()->get($className); |
|
182 | 182 | if (!$cache_data) { |
183 | 183 | return []; |
184 | 184 | } |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | // can never be commands. |
233 | 233 | $commandMethodNames = array_filter( |
234 | 234 | get_class_methods($classNameOrInstance) ?: [], |
235 | - function ($m) { |
|
235 | + function($m) { |
|
236 | 236 | return !preg_match('#^_#', $m); |
237 | 237 | } |
238 | 238 | ); |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | return $this->createSelectedCommandsFromClassInfo( |
259 | 259 | $commandInfoList, |
260 | 260 | $commandFileInstance, |
261 | - function ($commandInfo) use ($includeAllPublicMethods) { |
|
261 | + function($commandInfo) use ($includeAllPublicMethods) { |
|
262 | 262 | return static::isCommandMethod($commandInfo, $includeAllPublicMethods); |
263 | 263 | } |
264 | 264 | ); |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | |
161 | 161 | $this->name = $info_array['name']; |
162 | 162 | $this->methodName = $info_array['method_name']; |
163 | - $this->otherAnnotations = new AnnotationData((array) $info_array['annotations']); |
|
163 | + $this->otherAnnotations = new AnnotationData((array)$info_array['annotations']); |
|
164 | 164 | $this->arguments = new DefaultsWithDescriptions(); |
165 | 165 | $this->options = new DefaultsWithDescriptions(); |
166 | 166 | $this->aliases = $info_array['aliases']; |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | |
187 | 187 | $this->input_options = []; |
188 | 188 | foreach ((array)$info_array['input_options'] as $i => $option) { |
189 | - $option = (array) $option; |
|
189 | + $option = (array)$option; |
|
190 | 190 | $this->inputOptions[$i] = new InputOption( |
191 | 191 | $option['name'], |
192 | 192 | $option['shortcut'], |
@@ -734,8 +734,8 @@ discard block |
||
734 | 734 | */ |
735 | 735 | protected function convertName($camel) |
736 | 736 | { |
737 | - $splitter="-"; |
|
738 | - $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); |
|
737 | + $splitter = "-"; |
|
738 | + $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); |
|
739 | 739 | $camel = preg_replace("/$splitter/", ':', $camel, 1); |
740 | 740 | return strtolower($camel); |
741 | 741 | } |
@@ -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 |