1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace Sluggable\Fixture\Inheritance2;
- use Doctrine\ORM\Mapping as ORM;
- use Gedmo\Mapping\Annotation as Gedmo;
- /**
- * @ORM\Entity
- */
- class Car extends Vehicle
- {
- /**
- * @ORM\Column(length=128, nullable=true)
- */
- private $description;
- /**
- * @ORM\Column(length=128)
- */
- protected $title;
- /**
- * @Gedmo\Slug(fields={"title"})
- * @ORM\Column(length=128, unique=true)
- */
- private $slug;
- public function setDescription($description)
- {
- $this->description = $description;
- }
- public function getDescription()
- {
- return $this->description;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function getSlug()
- {
- return $this->slug;
- }
- }
|