私は一般的に Symfony2 を初めて使用します。ただし、この問題は Doctrine と FOSUserBundle に関連しています。
FOSUserBundle と多対多の自己参照に基づいて作成された次の User.php エンティティがあります。
<?php
namespace Pan100\MoodLogBundle\Entity;
use FOS\UserBundle\Entity\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="fos_user")
*/
class User extends BaseUser
{
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ManyToMany(targetEntity="User", mappedBy="hasAccessToMe")
**/
protected $hasAccessTo;
/**
* @ManyToMany(targetEntity="User", inversedBy="hasAccessTo")
* @JoinTable(name="access",
* joinColumns={@JoinColumn(name="id", referencedColumnName="id")},
* inverseJoinColumns={@JoinColumn(name="accessor_id", referencedColumnName="id")}
* )
**/
private $hasAccessToMe;
public function __construct()
{
parent::__construct();
$this->hasAccessTo = new \Doctrine\Common\Collections\ArrayCollection();
$this->hasAccessToMe = new \Doctrine\Common\Collections\ArrayCollection();
}
}
キャッシュを更新または削除しようとすると、次のエラーが表示されます。
[Doctrine\Common\Annotations\AnnotationException]
[Semantical Error] The annotation "@ManyToMany" in property Pan100\MoodLog
Bundle\Entity\User::$hasAccessTo was never imported. Did you maybe forget
to add a "use" statement for this annotation?
ここで何が問題なのですか?そして、「使用ステートメント」とは何ですか?