123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- namespace Blameable\Fixture\Entity;
- use Gedmo\Blameable\Blameable;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class TitledArticle implements Blameable
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @ORM\Column(name="title", type="string", length=128)
- */
- private $title;
- /**
- * @ORM\Column(name="text", type="string", length=128)
- */
- private $text;
- /**
- * @var string $updated
- *
- * @ORM\Column(name="chtext", type="string", nullable=true)
- * @Gedmo\Blameable(on="change", field="text")
- */
- private $chtext;
- /**
- * @var string $chtitle
- *
- * @ORM\Column(name="chtitle", type="string", nullable=true)
- * @Gedmo\Blameable(on="change", field="title")
- */
- private $chtitle;
- /**
- * @param string $chtext
- */
- public function setChtext($chtext)
- {
- $this->chtext = $chtext;
- }
- /**
- * @return string
- */
- public function getChtext()
- {
- return $this->chtext;
- }
- /**
- * @param string $chtitle
- */
- public function setChtitle($chtitle)
- {
- $this->chtitle = $chtitle;
- }
- /**
- * @return string
- */
- public function getChtitle()
- {
- return $this->chtitle;
- }
- public function setId($id)
- {
- $this->id = $id;
- }
- public function getId()
- {
- return $this->id;
- }
- public function setText($text)
- {
- $this->text = $text;
- }
- public function getText()
- {
- return $this->text;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|