@@ -52,7 +52,7 @@ discard block |
||
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 |
||
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 |
||
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 |