to register the controller as a service or missed tagging it with the "controller.service_arguments”?
services.yaml
`
App\Controller\:
resource: '../src/Controller/'
tags: ['controller.service_arguments']`
`
routes.yaml
`
test:
path: /index
controller: App\Controller\IndexAction
`
indexAction.php
`
final class IndexAction
{
public function __invoke(Environment $environment)
{
dump(44); die();
}
}`
Я чтото забыл определить? почему я вижу ошибку?
bin/console debug:container Искать контроллер
Обсуждают сегодня