@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | return $this->joinParts( |
268 | 268 | '\\', |
269 | 269 | $namespaceParts, |
270 | - function ($item) { |
|
270 | + function($item) { |
|
271 | 271 | return !is_numeric($item) && !empty($item); |
272 | 272 | } |
273 | 273 | ); |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | return $this->joinParts( |
287 | 287 | '/', |
288 | 288 | $pathParts, |
289 | - function ($item) { |
|
289 | + function($item) { |
|
290 | 290 | return !empty($item); |
291 | 291 | } |
292 | 292 | ); |
@@ -254,8 +254,8 @@ |
||
254 | 254 | |
255 | 255 | protected function convertName($camel) |
256 | 256 | { |
257 | - $splitter="-"; |
|
258 | - $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); |
|
257 | + $splitter = "-"; |
|
258 | + $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel)); |
|
259 | 259 | $camel = preg_replace("/$splitter/", ':', $camel, 1); |
260 | 260 | return strtolower($camel); |
261 | 261 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | // set or setup. |
76 | 76 | $commandMethodNames = array_filter( |
77 | 77 | get_class_methods($classNameOrInstance) ?: [], |
78 | - function ($m) { |
|
78 | + function($m) { |
|
79 | 79 | return !preg_match('#^(_|get[A-Z]|set[A-Z])#', $m); |
80 | 80 | } |
81 | 81 | ); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | return $this->createSelectedCommandsFromClassInfo( |
98 | 98 | $commandInfoList, |
99 | 99 | $commandFileInstance, |
100 | - function ($commandInfo) use ($includeAllPublicMethods) { |
|
100 | + function($commandInfo) use ($includeAllPublicMethods) { |
|
101 | 101 | return $includeAllPublicMethods || static::isCommandMethod($commandInfo); |
102 | 102 | } |
103 | 103 | ); |