我在我的引导程序文件中定义了这些名称空间:
use Doctrine\Common\ClassLoader,
Doctrine\Common\Annotations\AnnotationReader,
Doctrine\ODM\MongoDB\DocumentManager,
Doctrine\ODM\MongoDB\Mongo,
Doctrine\ODM\MongoDB\Configuration,
Doctrine\ODM\MongoDB\Mapping\Driver\AnnotationDriver;
但上面的第一行有一个错误:
syntax error, unexpected 'Doctrine', expecting '('
7.X应该具有命名空间支持,但它在整个项目中显示错误ALL。知道为什么吗?
答案 0 :(得分:3)
只是一个想法,但你确定你的项目配置为PHP 5.3支持?对于新项目,我们的安装默认为PHP 5.2。