src/Entity/Device.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DeviceRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassDeviceRepository::class)]
  7. class Device
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $gym null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  16.     private ?\DateTimeInterface $lastHeartBeat null;
  17.     public function getId(): ?int
  18.     {
  19.         return $this->id;
  20.     }
  21.     public function getGym(): ?string
  22.     {
  23.         return $this->gym;
  24.     }
  25.     public function setGym(string $gym): static
  26.     {
  27.         $this->gym $gym;
  28.         return $this;
  29.     }
  30.     public function getLastHeartBeat(): ?\DateTimeInterface
  31.     {
  32.         return $this->lastHeartBeat;
  33.     }
  34.     public function setLastHeartBeat(?\DateTimeInterface $lastHeartBeat): static
  35.     {
  36.         $this->lastHeartBeat $lastHeartBeat;
  37.         return $this;
  38.     }
  39. }