不能重新声明类symfony2

时间:2012-07-12 21:45:12

标签: symfony

当我运行命令时:

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
{

1 个答案:

答案 0 :(得分:1)

是Simone Demo Gentili说的,我复制并粘贴了一些实体并忘了在粘贴的代码中重命名类。

他回答了我的问题但是因为他发表评论我不能选择他的'评论'作为解决方案。