Completed
Pull Request — master (#17)
by Guilh
02:04
created
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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'];
Please login to merge, or discard this patch.
DependencyInjection/CompilerPass/RegisterCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.