Symfony 3,doctrine致命错误,标量类型声明'integer'必须是不合格的

时间:2016-09-28 10:25:07

标签: doctrine symfony php-7

我有这段代码:

class Entity
{
    /**
    * @ORM\Column(type="Integer")
    * @ORM\Id
    * @ORM\GeneratedValue(strategy="AUTO")
    */
    private $id;
    ...
}

当我尝试运行doctrine时:schema:update,我得到了

Fatal error, Scalar type declaration 'integer' must be unqualified

为什么会出现此错误?我该如何解决这个问题?

1 个答案:

答案 0 :(得分:5)

问题是我应该输入Column(type =“integer”)而不是Column(type =“Integer”)。这只是一个案例问题。