Jestem nowym użytkownikiem Symfony2. Ten problem dotyczy jednak Doctrine i FOSUserBundle.Symfony2 - Doctrine i FOSUserBundle - złe adnotacje
Mam następujące User.php Entity utworzone na podstawie FOSUserBundle i self-refercing wielu-do wielu.
<?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();
}
}
Daje mi następujący błąd przy próbie aktualizacji cache lub spadek:
[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?
Co tu jest nie tak? A co to jest "oświadczenie o użyciu"?
powodzenie! ponieważ używam go jako ORM, muszę umieścić ORM \ przed wszystkimi adnotacjami. – Piddien