12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace Loggable\Fixture\Entity;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- * @Gedmo\Loggable
- */
- class RelatedArticle
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @Gedmo\Versioned
- * @ORM\Column(length=128)
- */
- private $title;
- /**
- * @Gedmo\Versioned
- * @ORM\Column(type="text")
- */
- private $content;
- /**
- * @ORM\OneToMany(targetEntity="Comment", mappedBy="article")
- */
- private $comments;
- public function getId()
- {
- return $this->id;
- }
- public function addComment(Comment $comment)
- {
- $comment->setArticle($this);
- $this->comments[] = $comment;
- }
- public function getComments()
- {
- return $this->comments;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function setContent($content)
- {
- $this->content = $content;
- }
- public function getContent()
- {
- return $this->content;
- }
- }
|