1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Loggable\Fixture\Entity;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- * @Gedmo\Loggable
- */
- class Article
- {
- /**
- * @ORM\Column(name="id", type="integer")
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @Gedmo\Versioned
- * @ORM\Column(name="title", type="string", length=8)
- */
- private $title;
- public function getId()
- {
- return $this->id;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|