<?phpnamespace App\Entity;use App\Repository\UserAttendanceRepository;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass=UserAttendanceRepository::class) */class UserAttendance{ /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer", name="idUserAttendance") */ private $id; /** * @ORM\Column(type="integer", nullable=true) */ private $idUser; /** * @ORM\Column(type="integer", nullable=true) */ private $idSessionStage; /** * @ORM\Column(type="string", length=1, nullable=true) */ private $attendance; /** * @ORM\Column(type="boolean", nullable=true) */ private $emailSent; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $signedAt; public function getId(): ?int { return $this->id; } public function getIdUser(): ?int { return $this->idUser; } public function setIdUser(?int $idUser): self { $this->idUser = $idUser; return $this; } public function getIdSessionStage(): ?int { return $this->idSessionStage; } public function setIdSessionStage(?int $idSessionStage): self { $this->idSessionStage = $idSessionStage; return $this; } public function getAttendance(): ?string { return $this->attendance; } public function setAttendance(?string $attendance): self { $this->attendance = $attendance; return $this; } public function getEmailSent(): ?bool { return $this->emailSent; } public function setEmailSent(?bool $emailSent): self { $this->emailSent = $emailSent; return $this; } public function getSignedAt(): ?string { return $this->signedAt; } public function setSignedAt(?string $signedAt): self { $this->signedAt = $signedAt; return $this; }}