src/Entity/Email.php line 9
<?phpnamespace App\Entity;use App\Repository\EmailRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: EmailRepository::class)]class Email{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(nullable: true)]private ?int $societe = null;#[ORM\Column(nullable: true)]private ?int $code_client = null;#[ORM\Column(length: 255, nullable: true)]private ?string $email = null;public function getId(): ?int{return $this->id;}public function getSociete(): ?int{return $this->societe;}public function setSociete(?int $societe): self{$this->societe = $societe;return $this;}public function getCodeClient(): ?int{return $this->code_client;}public function setCodeClient(?int $code_client): self{$this->code_client = $code_client;return $this;}public function getEmail(): ?string{return $this->email;}public function setEmail(?string $email): self{$this->email = $email;return $this;}}