Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

27 linhas
479B

  1. <?php
  2. namespace App\Entity;
  3. use Lc\PietroBundle\Repository\Thematic\ThematicRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Lc\PietroBundle\Model\Thematic\Thematic as PietroThematic;
  6. /**
  7. * @ORM\Entity(repositoryClass=ThematicRepository::class)
  8. */
  9. class Thematic extends PietroThematic
  10. {
  11. /**
  12. * @ORM\Id
  13. * @ORM\GeneratedValue
  14. * @ORM\Column(type="integer")
  15. */
  16. private $id;
  17. public function getId(): ?int
  18. {
  19. return $this->id;
  20. }
  21. }