12345678910111213141516171819202122232425262728 |
- <?php
- namespace Blameable\Fixture\Entity;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class SupperClassExtension extends MappedSupperClass
- {
- /**
- * @ORM\Column(length=128)
- * @Gedmo\Translatable
- */
- private $title;
- public function setTitle($title)
- {
- $this->title = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- }
|