<?phpnamespace App\Entity;use App\Repository\ElectronicInvoiceContactRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ElectronicInvoiceContactRepository::class)]class ElectronicInvoiceContact{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private $id; #[ORM\Column(type: 'string', length: 255)] private $company; #[ORM\Column(type: 'string', length: 255)] private $firstname; #[ORM\Column(type: 'string', length: 255)] private $lastname; #[ORM\Column(type: 'string', length: 255)] private $phone; #[ORM\Column(type: 'string', length: 255)] private $email; #[ORM\Column(type: 'text')] private $message; #[ORM\Column(type: 'datetime_immutable')] private $createdAt; #[ORM\ManyToOne(targetEntity: AccountingFirm::class, inversedBy: 'electronicInvoiceContacts')] private $accountingFirm; public function getId(): ?int { return $this->id; } public function getCompany(): ?string { return $this->company; } public function setCompany(string $company): self { $this->company = $company; return $this; } public function getFirstname(): ?string { return $this->firstname; } public function setFirstname(string $firstname): self { $this->firstname = $firstname; return $this; } public function getLastname(): ?string { return $this->lastname; } public function setLastname(string $lastname): self { $this->lastname = $lastname; return $this; } public function getPhone(): ?string { return $this->phone; } public function setPhone(string $phone): self { $this->phone = $phone; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(string $email): self { $this->email = $email; return $this; } public function getMessage(): ?string { return $this->message; } public function setMessage(string $message): self { $this->message = $message; return $this; } public function getCreatedAt(): ?\DateTimeImmutable { return $this->createdAt; } public function setCreatedAt(\DateTimeImmutable $createdAt): self { $this->createdAt = $createdAt; return $this; } public function getAccountingFirm(): ?AccountingFirm { return $this->accountingFirm; } public function setAccountingFirm(?AccountingFirm $accountingFirm): self { $this->accountingFirm = $accountingFirm; return $this; }}