This repository was archived by the owner on Jan 8, 2020. It is now read-only.
This repository was archived by the owner on Jan 8, 2020. It is now read-only.
Console controller cannot accept route with controller #3358
Closed
Description
I have the following route in the console router:
'controller' => array(
'options' => array(
'route' => 'ember create controller <controllerName>',
'defaults' => array(
'controller' => 'ZfrEmber\Controller\CodeGenerator',
'action' => 'controller'
)
)
),
It says that i tCould not match a controller. However, changing the controller part in the route to something like 'ember create eController ' works. I suppose "controller" should not be a reserved keyword for routes.