src/Entity/Apropos.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AproposRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Doctrine\DBAL\Types\Types;
  6. #[ORM\Entity(repositoryClassAproposRepository::class)]
  7. class Apropos
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $Titre null;
  15.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  16.     private ?string $description1 null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $birthday null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $website null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $phone null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $city null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $age null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $Degree null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $email null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $Freelance null;
  33.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  34.     private ?string $description2 null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $photo null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getTitre(): ?string
  42.     {
  43.         return $this->Titre;
  44.     }
  45.     public function setTitre(?string $Titre): self
  46.     {
  47.         $this->Titre $Titre;
  48.         return $this;
  49.     }
  50.     public function getDescription1(): ?string
  51.     {
  52.         return $this->description1;
  53.     }
  54.     public function setDescription1(?string $description1): self
  55.     {
  56.         $this->description1 $description1;
  57.         return $this;
  58.     }
  59.     public function getBirthday(): ?string
  60.     {
  61.         return $this->birthday;
  62.     }
  63.     public function setBirthday(?string $birthday): self
  64.     {
  65.         $this->birthday $birthday;
  66.         return $this;
  67.     }
  68.     public function getWebsite(): ?string
  69.     {
  70.         return $this->website;
  71.     }
  72.     public function setWebsite(?string $website): self
  73.     {
  74.         $this->website $website;
  75.         return $this;
  76.     }
  77.     public function getPhone(): ?string
  78.     {
  79.         return $this->phone;
  80.     }
  81.     public function setPhone(?string $phone): self
  82.     {
  83.         $this->phone $phone;
  84.         return $this;
  85.     }
  86.     public function getCity(): ?string
  87.     {
  88.         return $this->city;
  89.     }
  90.     public function setCity(?string $city): self
  91.     {
  92.         $this->city $city;
  93.         return $this;
  94.     }
  95.     public function getAge(): ?string
  96.     {
  97.         return $this->age;
  98.     }
  99.     public function setAge(?string $age): self
  100.     {
  101.         $this->age $age;
  102.         return $this;
  103.     }
  104.     public function getDegree(): ?string
  105.     {
  106.         return $this->Degree;
  107.     }
  108.     public function setDegree(?string $Degree): self
  109.     {
  110.         $this->Degree $Degree;
  111.         return $this;
  112.     }
  113.     public function getEmail(): ?string
  114.     {
  115.         return $this->email;
  116.     }
  117.     public function setEmail(?string $email): self
  118.     {
  119.         $this->email $email;
  120.         return $this;
  121.     }
  122.     public function getFreelance(): ?string
  123.     {
  124.         return $this->Freelance;
  125.     }
  126.     public function setFreelance(?string $Freelance): self
  127.     {
  128.         $this->Freelance $Freelance;
  129.         return $this;
  130.     }
  131.     public function getDescription2(): ?string
  132.     {
  133.         return $this->description2;
  134.     }
  135.     public function setDescription2(?string $description2): self
  136.     {
  137.         $this->description2 $description2;
  138.         return $this;
  139.     }
  140.     public function getPhoto(): ?string
  141.     {
  142.         return $this->photo;
  143.     }
  144.     public function setPhoto(?string $photo): self
  145.     {
  146.         $this->photo $photo;
  147.         return $this;
  148.     }
  149. }