@@ -22,7 +22,7 @@ |
||
| 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); |
@@ -5,6 +5,6 @@ |
||
| 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 | } |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | |
| 4 | 4 | use League\Tactician\Exception\MissingHandlerException; |
| 5 | 5 | use League\Tactician\Handler\Locator\HandlerLocator; |
| 6 | -use Zend\ServiceManager\Exception\ServiceNotFoundException; |
|
| 7 | 6 | use Zend\ServiceManager\ServiceLocatorInterface; |
| 8 | 7 | |
| 9 | 8 | class ZendLocator implements HandlerLocator |