12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Sluggable\Fixture\MappedSuperclass;
- use Doctrine\ORM\Mapping as ORM;
- use Gedmo\Mapping\Annotation as Gedmo;
- /**
- * @ORM\MappedSuperclass
- */
- class Vehicle
- {
- /**
- * @ORM\Column(length=128)
- */
- private $title;
- /**
- * @Gedmo\Slug(fields={"title"})
- * @ORM\Column(length=128, unique=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;
- }
- }
|