我試圖將許多服務添加到Controller的構造中,但沒有成功。Symfony 2依賴注入到Controller構造中
class PersonController extends Controller
{
public function __construct(UtilityService $Utils)
{
$this->util = $Utils;
}
public function indexAction()
{
...
}
}
我必須遵循什麼路徑?
你需要定義你的控制器'PersonController'的[服務](http://symfony.com/doc/current/cookbook/ servicem的名字controller/service.html) –