Completed
Pull Request — master (#4)
by Witold
13:28
created
src/Locator/ClassnameZendLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function getHandlerForCommand($commandName)
24 24
     {
25
-        $handlerFQCN = $commandName . 'Handler';
25
+        $handlerFQCN = $commandName.'Handler';
26 26
 
27 27
         try {
28 28
             return $this->getServiceLocator()->get($handlerFQCN);
Please login to merge, or discard this patch.
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/Factory/CommandBusFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use League\Tactician\Middleware;
6 6
 use Zend\ServiceManager\FactoryInterface;
7 7
 use Zend\ServiceManager\ServiceLocatorInterface;
8
-use Zend\Stdlib\PriorityList;
9 8
 
10 9
 class CommandBusFactory implements FactoryInterface
11 10
 {
Please login to merge, or discard this patch.