src/Entity/Expert.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ExpertRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ExpertRepository::class)
  7.  */
  8. class Expert
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $firstname;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $lastname;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $image;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $background;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $fonction;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $telephone;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $email;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $linkedin;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private $certification;
  52.     /**
  53.      * @ORM\Column(type="text", nullable=true)
  54.      */
  55.     private $presentation;
  56.     /**
  57.      * @ORM\Column(type="string", length=255)
  58.      */
  59.     private $slug;
  60.     /**
  61.      * @ORM\Column(type="string", length=255)
  62.      */
  63.     private $backgroundBleu;
  64.     public function getId(): ?int
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getFirstname(): ?string
  69.     {
  70.         return $this->firstname;
  71.     }
  72.     public function setFirstname(string $firstname): self
  73.     {
  74.         $this->firstname $firstname;
  75.         return $this;
  76.     }
  77.     public function getLastname(): ?string
  78.     {
  79.         return $this->lastname;
  80.     }
  81.     public function setLastname(string $lastname): self
  82.     {
  83.         $this->lastname $lastname;
  84.         return $this;
  85.     }
  86.     public function getImage(): ?string
  87.     {
  88.         return $this->image;
  89.     }
  90.     public function setImage(string $image): self
  91.     {
  92.         $this->image $image;
  93.         return $this;
  94.     }
  95.     public function getBackground(): ?string
  96.     {
  97.         return $this->background;
  98.     }
  99.     public function setBackground(string $background): self
  100.     {
  101.         $this->background $background;
  102.         return $this;
  103.     }
  104.     public function getFonction(): ?string
  105.     {
  106.         return $this->fonction;
  107.     }
  108.     public function setFonction(string $fonction): self
  109.     {
  110.         $this->fonction $fonction;
  111.         return $this;
  112.     }
  113.     public function getTelephone(): ?string
  114.     {
  115.         return $this->telephone;
  116.     }
  117.     public function setTelephone(string $telephone): self
  118.     {
  119.         $this->telephone $telephone;
  120.         return $this;
  121.     }
  122.     public function getEmail(): ?string
  123.     {
  124.         return $this->email;
  125.     }
  126.     public function setEmail(string $email): self
  127.     {
  128.         $this->email $email;
  129.         return $this;
  130.     }
  131.     public function getLinkedin(): ?string
  132.     {
  133.         return $this->linkedin;
  134.     }
  135.     public function setLinkedin(?string $linkedin): self
  136.     {
  137.         $this->linkedin $linkedin;
  138.         return $this;
  139.     }
  140.     public function getCertification(): ?string
  141.     {
  142.         return $this->certification;
  143.     }
  144.     public function setCertification(?string $certification): self
  145.     {
  146.         $this->certification $certification;
  147.         return $this;
  148.     }
  149.     public function getPresentation(): ?string
  150.     {
  151.         return $this->presentation;
  152.     }
  153.     public function setPresentation(?string $presentation): self
  154.     {
  155.         $this->presentation $presentation;
  156.         return $this;
  157.     }
  158.     public function getSlug(): ?string
  159.     {
  160.         return $this->slug;
  161.     }
  162.     public function setSlug(string $slug): self
  163.     {
  164.         $this->slug $slug;
  165.         return $this;
  166.     }
  167.     public function getBackgroundBleu(): ?string
  168.     {
  169.         return $this->backgroundBleu;
  170.     }
  171.     public function setBackgroundBleu(string $backgroundBleu): self
  172.     {
  173.         $this->backgroundBleu $backgroundBleu;
  174.         return $this;
  175.     }
  176. }