Completed
Pull Request — master (#10)
by Witold
06:43
created
src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 {
6 6
     public function getConfig()
7 7
     {
8
-        return require __DIR__ . '/../config/module.config.php';
8
+        return require __DIR__.'/../config/module.config.php';
9 9
     }
10 10
 }
Please login to merge, or discard this patch.
src/Locator/ClassnameZendLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function getHandlerForCommand($commandName)
27 27
     {
28
-        $handlerFQCN = $commandName . 'Handler';
28
+        $handlerFQCN = $commandName.'Handler';
29 29
 
30 30
         if ($this->serviceLocator->has($handlerFQCN)) {
31 31
             return $this->serviceLocator->get($handlerFQCN);
Please login to merge, or discard this patch.