SupperClassExtension.php 364 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Timestampable\Fixture;
  3. /**
  4. * @Entity
  5. */
  6. class SupperClassExtension extends MappedSupperClass
  7. {
  8. /**
  9. * @Column(length=128)
  10. * @gedmo:Translatable
  11. */
  12. private $title;
  13. public function setTitle($title)
  14. {
  15. $this->title = $title;
  16. }
  17. public function getTitle()
  18. {
  19. return $this->title;
  20. }
  21. }