Aib \ PlatformBundle \ Entity \ User.phpにエンティティクラスがありました
私はフォームクラスを作成しようとして問題はありませんでした
php app / console doctrine:generate:form AibPlatformBundle:User
名前空間をAib \ PlatformBundle \ Entity \ Identity \ Userに変更しましたが、タスクでフォームを生成しようとすると、次のように言っています。
「クラス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
{
...
何か案が?
symfony2.0.4