1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
- namespace Sluggable\Fixture;
-
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
-
- /**
- * @ORM\Entity
- */
- class Identifier
- {
- /**
- * @ORM\Id
- * @Gedmo\Slug(separator="_", updatable=false, fields={"title"})
- * @ORM\Column(length=32, unique=true)
- */
- private $id;
-
- /**
- * @ORM\Column(length=32)
- */
- private $title;
-
-
- public function getId()
- {
- return $this->id;
- }
-
- public function setTitle($title)
- {
- $this->title = $title;
- }
-
- public function getTitle()
- {
- return $this->title;
- }
- }
|