@@ -37,7 +37,7 @@ |
||
| 37 | 37 | ->prototype('array') |
| 38 | 38 | ->prototype('scalar')->end() |
| 39 | 39 | ->end() |
| 40 | - ->defaultValue(call_user_func(function () { |
|
| 40 | + ->defaultValue(call_user_func(function() { |
|
| 41 | 41 | $defaultValue = ['action' => ['Action']]; |
| 42 | 42 | if (class_exists(Command::class)) { |
| 43 | 43 | $defaultValue['command'] = ['Command']; |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | $reflectionClass = new \ReflectionClass($className); |
| 121 | 121 | $sourceFile = $reflectionClass->getFileName(); |
| 122 | 122 | |
| 123 | - if($reflectionClass->isAbstract()) { |
|
| 123 | + if ($reflectionClass->isAbstract()) { |
|
| 124 | 124 | continue; |
| 125 | 125 | } |
| 126 | 126 | |