当我运行命令时:
php app/console doctrine:generate:entities
我得到一个:
PHP Fatal error: Cannot redeclare class Sofla\SoflaBundle\Entity\RepresentanteLegal
in /Sofla/SoflaBundle/Entity/RepresentanteLegal.php on line 14
我对此一无所知。整个项目正在运行,我之前没有收到该消息,现在它在服务器上,它向我抛出了该消息。
这是类开始的代码:
命名空间 Sofla\SoflaBundle\Entity;
使用 Doctrine\ORM\Mapping 作为 ORM;
/**
* Sofla\SoflaBundle\Entity\RepresentanteLegal
*
* @ORM\Table(name="representante_legal")
* @ORM\Entity
*/
class RepresentanteLegal
{