Aib \ PlatformBundle \ Entity \ User.php에 엔티티 클래스가 있습니다.
폼 클래스를 만드는 데 아무런 문제가 없었습니다.
php app / console doctrine : generate : form AibPlatformBundle : User
이제 네임 스페이스를 Aib \ PlatformBundle \ Entity \ Identity \ User로 변경했지만 작업으로 양식을 생성하려고 할 때 이전에 다음과 같이 말했습니다.
"Class Aib \ PlatformBundle \ Entity \ User는 유효한 엔티티 또는 매핑 된 수퍼 클래스가 아닙니다."
다음은 파일 내용입니다.
<?php
namespace Aib\PlatformBundle\Entity\Identity;
use Doctrine\ORM\Mapping as ORM;
/**
* Aib\PlatformBundle\Entity\Identity\User
*
* @ORM\Table()
* @ORM\Entity(repositoryClass="Aib\PlatformBundle\Entity\Identity
\UserRepository")
*/
class User
{
...
어떤 생각?
심포니 2.0.4