Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

51 line
905B

  1. <?php
  2. namespace Lc\PietroBundle\Model;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * @ORM\MappedSuperclass()
  6. */
  7. abstract class Subthematic implements SubthematicInterface
  8. {
  9. /**
  10. * @ORM\Column(type="string", length=255)
  11. */
  12. private $name;
  13. /**
  14. * @ORM\ManyToOne(targetEntity="Lc\PietroBundle\Model\ThematicInterface", inversedBy="subthematic")
  15. */
  16. private $thematic;
  17. public function __toString()
  18. {
  19. return $this->name;
  20. }
  21. public function getName(): ?string
  22. {
  23. return $this->name;
  24. }
  25. public function setName(string $name): self
  26. {
  27. $this->name = $name;
  28. return $this;
  29. }
  30. public function getThematic(): ?ThematicInterface
  31. {
  32. return $this->thematic;
  33. }
  34. public function setThematic(?ThematicInterface $thematic): self
  35. {
  36. $this->thematic = $thematic;
  37. return $this;
  38. }
  39. }