69 lines
1.4 KiB
PHP
69 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Tech\Entity;
|
|
|
|
use App\Tech\Repository\EmailLogRepository;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: EmailLogRepository::class)]
|
|
#[ORM\Table(name: 'email_log')]
|
|
class EmailLog
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: User::class)]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
private ?User $user = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $emailIdentifier = null;
|
|
|
|
#[ORM\Column(type: Types::DATETIME_IMMUTABLE)]
|
|
private ?\DateTimeImmutable $sentAt = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getUser(): ?User
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
public function setUser(?User $user): static
|
|
{
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getEmailIdentifier(): ?string
|
|
{
|
|
return $this->emailIdentifier;
|
|
}
|
|
|
|
public function setEmailIdentifier(string $emailIdentifier): static
|
|
{
|
|
$this->emailIdentifier = $emailIdentifier;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSentAt(): ?\DateTimeImmutable
|
|
{
|
|
return $this->sentAt;
|
|
}
|
|
|
|
public function setSentAt(\DateTimeImmutable $sentAt): static
|
|
{
|
|
$this->sentAt = $sentAt;
|
|
|
|
return $this;
|
|
}
|
|
}
|