소스 검색

[FrameworkBundle] Adding a check for the existence of the Doctrine service

Ryan Weaver 14 년 전
부모
커밋
172c956b73
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php

+ 4 - 0
src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php

@@ -144,6 +144,10 @@ class Controller extends ContainerAware
      */
     public function getDoctrine()
     {
+        if (!$this->has('doctrine')) {
+            throw new \LogicException('The DoctrineBundle is not installed in your application.');
+        }
+
         return $this->get('doctrine');
     }