Test Failed
Push — master ( 2fa9b0...1565e2 )
by
unknown
01:50
created
src/Console/Infrastructure/Domain/Services/ClassCommandMakerSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,6 +35,6 @@
 block discarded – undo
35 35
 
36 36
     public static function getSubscribedEvents()
37 37
     {
38
-        return [CommandWasCreated::NAME => 'create'];
38
+        return [ CommandWasCreated::NAME => 'create' ];
39 39
     }
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.
Infrastructure/Domain/Services/ClassCommandHandlerMakerSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
 
24 24
     public static function getSubscribedEvents()
25 25
     {
26
-        return [CommandWasCreated::NAME => 'create'];
26
+        return [ CommandWasCreated::NAME => 'create' ];
27 27
     }
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
src/Console/Infrastructure/Domain/Services/PhpClass/Mapping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
         $this
25 25
             ->setQualifiedName("Saci\\{$moduleName}\\$className")
26
-            ->setInterfaces(['MappingInterface'])
26
+            ->setInterfaces([ 'MappingInterface' ])
27 27
             ->setMethod(
28 28
                 PhpMethod::create('__invoke')
29 29
                     ->setType('array')
Please login to merge, or discard this patch.