【发布时间】:2015-03-14 01:48:19
【问题描述】:
我试图在我的 symfony API 项目中使用学说,我有这个控制器,但是当它被调用时,我收到错误“ServiceNotFoundException”
<?php
namespace Cogc\EnquirerAPIBundle\Controller;
use FOS\RestBundle\Controller\FOSRestController;
use Doctrine;
class PageController extends FOSRestController
{
public function getPageAction($id)
{
return $this->container->get('doctrine.entity_manager')->getRepository('Page')->find($id);
}
}
【问题讨论】:
标签: php symfony doctrine-orm namespaces