Не получаеться передать контейнер в контроллер
//...
use Symfony\Component\DependencyInjection\ContainerInterface;
class TestController extends Controller
{
protected $container;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
}
}
Обявление сервиса
parameters:
# ...
test.class: Test\TestBundle\Controller\TestController
services:
test:
class: "%test.class%"
arguments: ["@service_container"]
Экземпляр вообще не создается, пишет пропущен аргумент в конструкторе.
Где ошибка?