在命名空间下使用AnnotationReader

时间:2015-05-24 06:17:25

标签: php doctrine-orm namespaces

我在命名空间framework \ ext \ Library下有一个类,并使用Doctrine \ Common \ Annotations \ AnnotationReader,但是当我尝试创建一个AnnotationReader实例时,它会抛出一个未找到类的异常。

namespace framework\ext\Library;

use Doctrine\Common\Annotations\AnnotationReader;
class CommonFunction {
  public function getAnno(){
    ...
    $annotationReader = new AnnotationReader();
    ...
  }
}

错误抛出

Fatal error: Class 'Doctrine\Common\Annotations\AnnotationReader' not found

我尝试删除CommonFunction的命名空间,但它运行正常。如何解决?

0 个答案:

没有答案