@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | { |
144 | 144 | $this->name = $info_array['name']; |
145 | 145 | $this->methodName = $info_array['method_name']; |
146 | - $this->otherAnnotations = new AnnotationData((array) $info_array['annotations']); |
|
146 | + $this->otherAnnotations = new AnnotationData((array)$info_array['annotations']); |
|
147 | 147 | $this->arguments = new DefaultsWithDescriptions(); |
148 | 148 | $this->options = new DefaultsWithDescriptions(); |
149 | 149 | $this->aliases = $info_array['aliases']; |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | |
170 | 170 | $this->input_options = []; |
171 | 171 | foreach ((array)$info_array['input_options'] as $i => $option) { |
172 | - $option = (array) $option; |
|
172 | + $option = (array)$option; |
|
173 | 173 | $this->inputOptions[$i] = new InputOption( |
174 | 174 | $option['name'], |
175 | 175 | $option['shortcut'], |
@@ -695,8 +695,8 @@ discard block |
||
695 | 695 | */ |
696 | 696 | protected function convertName($camel) |
697 | 697 | { |
698 | - $splitter="-"; |
|
699 | - $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); |
|
698 | + $splitter = "-"; |
|
699 | + $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); |
|
700 | 700 | $camel = preg_replace("/$splitter/", ':', $camel, 1); |
701 | 701 | return strtolower($camel); |
702 | 702 | } |
@@ -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 | ); |