Completed
Push — master ( b2b550...843e94 )
by Андрей
03:57 queued 01:18
created
Module.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     public function init(ModuleManagerInterface $manager)
53 53
     {
54 54
         if (!$manager instanceof ModuleManager) {
55
-            $errMsg =sprintf('Module manager not implement %s', ModuleManager::class);
55
+            $errMsg = sprintf('Module manager not implement %s', ModuleManager::class);
56 56
             throw new Exception\InvalidArgumentException($errMsg);
57 57
         }
58 58
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         return [
109 109
             'Zend\Loader\StandardAutoloader' => [
110 110
                 'namespaces' => [
111
-                    __NAMESPACE__ => __DIR__ . '/src/',
111
+                    __NAMESPACE__ => __DIR__.'/src/',
112 112
                 ],
113 113
             ],
114 114
         ];
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function getConfig()
124 124
     {
125
-        return include __DIR__ . '/config/module.config.php';
125
+        return include __DIR__.'/config/module.config.php';
126 126
     }
127 127
 
128 128
 } 
129 129
\ No newline at end of file
Please login to merge, or discard this patch.