如何配置Doctrine来读取命名空间注释?

时间:2012-09-18 04:47:06

标签: doctrine-orm

<?php
use Doctrine\ORM\Mapping as ORM;
/**
 * @ORM\Table(name="games")
 * @ORM\Entity
 */
class Games
{
    /**
     * @ORM\Column(name="id", type="bigint", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;

    .......
}

我得到了这个致命的错误:消息:“类游戏不是有效的实体或映射的超类。”

但是,如果我删除@ORM然后它工作。如何配置它与名称空间ORM一起使用。

这是我的学说配置:https://gist.github.com/a14bb5eb08073fa74857,我使用的是doctrine 2.2

0 个答案:

没有答案