Completed
Push — dev ( 141995...fca98e )
by Андрей
03:32
created
Module.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     public function init(ModuleManagerInterface $manager)
91 91
     {
92 92
         if (!$manager instanceof ModuleManager) {
93
-            $errMsg =sprintf('Module manager not implement %s', ModuleManager::class);
93
+            $errMsg = sprintf('Module manager not implement %s', ModuleManager::class);
94 94
             throw new Exception\InvalidArgumentException($errMsg);
95 95
         }
96 96
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     public function onBootstrap(EventInterface $e)
144 144
     {
145 145
         if (!$e instanceof MvcEvent) {
146
-            $errMsg =sprintf('Event not implement %s', MvcEvent::class);
146
+            $errMsg = sprintf('Event not implement %s', MvcEvent::class);
147 147
             throw new Exception\InvalidArgumentException($errMsg);
148 148
         }
149 149
 
@@ -196,9 +196,9 @@  discard block
 block discarded – undo
196 196
         return [
197 197
             'Doctrine data fixture',
198 198
             'nnx:fixture execute-fixture --fixtureClassName=' => 'Run fixture bu class name',
199
-            ['--fixtureClassName=FIXTURE_CLASS_NAME', 'Fixture class name'],
199
+            [ '--fixtureClassName=FIXTURE_CLASS_NAME', 'Fixture class name' ],
200 200
             'nnx:fixture run-executor --executorName=' => 'Run fixture executor by name',
201
-            ['--executorName==EXECUTOR_NAME', 'Executor name'],
201
+            [ '--executorName==EXECUTOR_NAME', 'Executor name' ],
202 202
         ];
203 203
     }
204 204
 
Please login to merge, or discard this patch.