学说实体和特征。正确的方法

时间:2013-07-17 08:54:08

标签: php symfony doctrine-orm doctrine traits

我有一个Comment实体(用于用户评论),我想在我的旧实体中添加一个新功能(Commentable)。 我创造了一个特征可评论:

trait Commentable
{
    /**
     * List of comments
     *
     * @var Comment[]|ArrayCollection
     *
     * @ORM\OneToMany(targetEntity="Comment")
     */
    protected $comments;

    /**
     * Constructor
     */
    public function __construct()
    {
        $this->comments = new ArrayCollection();
    }

    /**
     * Get Comments
     *
     * @return Comment[]|ArrayCollection
     */
    public function getComments()
    {
        return $this->comments;
    }

    /**
     * Add comment to the entity
     *
     * @param Comment $comment
     */
    public function addComment(Comment $comment)
    {
        $this->comments->add($comment);
    }
}

在旧实体中我做了这样的事情:

class Image
{
    use Commentable {
        Commentable::__construct as private __commentableConstruct;
    }

    /** some stuff **/
}

Comment类看起来像:

class Comment
{
    /**
     * Identifier
     *
     * @var int
     *
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    protected $id;

    /**
     * Comment owner
     *
     * @var User
     *
     * @ORM\ManyToOne(targetEntity="User", inversedBy="comments")
     * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
     */
    protected $user;

    /**
     * Comment content
     *
     * @var string
     *
     * @ORM\Column(type="text")
     */
    protected $content;

    /**
     * @var Image
     *
     * @ORM\ManyToOne(targetEntity="Image", inversedBy="comments")
     */
    protected $image;
    /** all the classes using Commentable **/

    /** some stuff */
}

我认为这个想法并不坏。我可以创建新的行为并轻松地将其添加到实体。 但我不喜欢Comment实体的想法。使用可评论特征添加所有类不是“有用”。 我收到了这个错误...但我不知道如何用特征来解决这个问题:

OneToMany mapping on field 'comments' requires the 'mappedBy' attribute.

2 个答案:

答案 0 :(得分:3)

我使用

修复了问题
trait Commentable
{
    /**
     * List of comments
     *
     * @var Comment[]|ArrayCollection
     *
     * @ORM\ManyToMany(targetEntity="XXXX\Entity\Comment")
     * @ORM\OrderBy({"createdAt" = "DESC"})
     */
    protected $comments;

    /**
     * Constructor
     */
    public function __construct()
    {
        $this->comments = new ArrayCollection();
    }

    /**
     * Get Comments
     *
     * @return Comment[]|ArrayCollection
     */
    public function getComments()
    {
        return $this->comments;
    }

    /**
     * Add comment to the entity
     *
     * @param Comment $comment
     */
    public function addComment(Comment $comment)
    {
        $this->comments->add($comment);
    }
}

答案 1 :(得分:0)

这不是特质问题,而是与地图/学说相关的问题。

您的注释“@OneToMany”错过了根据the documentation

的配置

我想在你的Image类中,你应该覆盖用于映射的属性。