You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 satır
502B

  1. <?php
  2. namespace App\Entity;
  3. use Lc\PietroBundle\Repository\Subthematic\SubthematicRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Lc\PietroBundle\Model\Subthematic\Subthematic as PietroSubthematic;
  6. /**
  7. * @ORM\Entity(repositoryClass=SubthematicRepository::class)
  8. */
  9. class Subthematic extends PietroSubthematic
  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. }