| 1 | <?php |
||
| 8 | class ClassnameLaminasLocator implements HandlerLocator |
||
| 9 | { |
||
| 10 | private $container; |
||
| 11 | |||
| 12 | 3 | public function __construct(ContainerInterface $container) |
|
| 16 | |||
| 17 | /** |
||
| 18 | * Retrieves the handler for a specified command |
||
| 19 | * |
||
| 20 | * @param string $commandName |
||
| 21 | * |
||
| 22 | * @return mixed |
||
| 23 | * |
||
| 24 | * @throws MissingHandlerException |
||
| 25 | */ |
||
| 26 | 3 | public function getHandlerForCommand($commandName) |
|
| 40 | } |
||
| 41 |