src/Entity/SessionHistory.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\SessionHistoryRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSessionHistoryRepository::class)]
  8. #[ApiResource]
  9. class SessionHistory
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\ManyToOne(inversedBy'sessionHistories')]
  16.     #[ORM\JoinColumn(nullablefalse)]
  17.     private ?User $user null;
  18.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  19.     private ?\DateTimeInterface $startAt null;
  20.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  21.     private ?\DateTimeInterface $endAt null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getUser(): ?User
  27.     {
  28.         return $this->user;
  29.     }
  30.     public function setUser(?User $user): self
  31.     {
  32.         $this->user $user;
  33.         return $this;
  34.     }
  35.     public function getStartAt(): ?\DateTimeInterface
  36.     {
  37.         return $this->startAt;
  38.     }
  39.     public function setStartAt(?\DateTimeInterface $startAt): self
  40.     {
  41.         $this->startAt $startAt;
  42.         return $this;
  43.     }
  44.     public function getEndAt(): ?\DateTimeInterface
  45.     {
  46.         return $this->endAt;
  47.     }
  48.     public function setEndAt(?\DateTimeInterface $endAt): self
  49.     {
  50.         $this->endAt $endAt;
  51.         return $this;
  52.     }
  53. }