1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace Sluggable\Fixture\Issue131;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class Article
- {
- /**
- * @ORM\Id
- * @ORM\GeneratedValue
- * @ORM\Column(type="integer")
- */
- private $id;
- /**
- * @ORM\Column(length=64)
- */
- private $title;
- /**
- * @Gedmo\Slug(updatable=true, unique=true, fields={"title"})
- * @ORM\Column(length=64, unique=true, nullable=true)
- */
- private $slug;
- public function getId()
- {
- return $this->id;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function getSlug()
- {
- return $this->slug;
- }
- }
|