Voici votre URL de partage https://sharemycode.io/c/e586578 (Cliquer pour copier) (Copié)

Nom du fichier : Coordonnees.php

<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;
use App\Repository\CoordonneesRepository;

#[ORM\Entity(repositoryClass: CoordonneesRepository::class)]
class Coordonnees
{
    #[ORM\Id]
    #[ORM\GeneratedValue]
    #[ORM\Column]
    private ?int $id = null;

    #[ORM\Column(length: 255)]
    private ?string $adresse = null;

    #[ORM\Column(length: 255)]
    private ?string $codePostal = null;

    #[ORM\Column(length: 255)]
    private ?string $phone = null;

    #[ORM\Column(length: 255)]
    private ?string $mail = null;

    // Adding constructor for dependency injection and initialization if necessary
    public function __construct(
        ?string $adresse = null,
        ?string $codePostal = null,
        ?string $phone = null,
        ?string $mail = null
    ) {
        $this->adresse = $adresse;
        $this->codePostal = $codePostal;
        $this->phone = $phone;
        $this->mail = $mail;
    }

    public function getId(): ?int
    {
        return $this->id;
    }

    public function getAdresse(): ?string
    {
        return $this->adresse;
    }

    public function setAdresse(string $adresse): static
    {
        $this->adresse = $adresse;
        return $this;
    }

    public function getCodePostal(): ?string
    {
        return $this->codePostal;
    }

    public function setCodePostal(string $codePostal): static
    {
        $this->codePostal = $codePostal;
        return $this;
    }

    public function getPhone(): ?string
    {
        return $this->phone;
    }

    public function setPhone(string $phone): static
    {
        $this->phone = $phone;
        return $this;
    }

    public function getMail(): ?string
    {
        return $this->mail;
    }

    public function setMail(string $mail): static
    {
        $this->mail = $mail;
        return $this;
    }
}

Informations

Cet extrait a été créé le 28 oct. 2024 à 16:41:09

Cet extrait expire le 27 nov. 2024 à 16:41:09

Langage : php

Logo php

Link

Voici votre URL de partage : https://sharemycode.io/c/e586578 Copié

Ce code a été partagé avec Share on ShareMyCode.io pour VSCode