Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

25 lines
398B

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