I've tried to add many services into the construct of a Controller without success.
class PersonController extends Controller
{
public function __construct(UtilityService $Utils)
{
$this->util = $Utils;
}
public function indexAction()
{
...
}
}
what's the path I must follow?