選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

25 行
410B

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