Объявляю именованный сервис
some.easy_service:
class: SomeVendor\Services\EasyService
arguments:
...
Затем прописываю его в другой сервис
SomeVendor\SomeBundle\Services\AnotherService:
arguments:
$easyService: '@some.easy_service'
...
Получаю ошибку
Cannot autowire service "SomeVendor\SomeBundle\Services\AnotherService": argument "$easyService" of method "__construct()" references class "SomeVendor\Services\EasyService" but no such service exists. You should maybe alias this class to the existing "some.easy_service" service.
Он его и видит и не видит одновременно. Включено автосвязывание сервисов. Но алиас не объявлен, я ведь напрямую его прописал. Почему он его не видит в упор?