src/Entity/Experience.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ExperienceRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassExperienceRepository::class)]
  6. class Experience
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $poste null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $time null;
  16.     #[ORM\Column(length255nullabletrue)]
  17.     private ?string $company null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $task1 null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $task2 null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $task3 null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $task4 null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getPoste(): ?string
  31.     {
  32.         return $this->poste;
  33.     }
  34.     public function setPoste(?string $poste): self
  35.     {
  36.         $this->poste $poste;
  37.         return $this;
  38.     }
  39.     public function getTime(): ?string
  40.     {
  41.         return $this->time;
  42.     }
  43.     public function setTime(?string $time): self
  44.     {
  45.         $this->time $time;
  46.         return $this;
  47.     }
  48.     public function getCompany(): ?string
  49.     {
  50.         return $this->company;
  51.     }
  52.     public function setCompany(?string $company): self
  53.     {
  54.         $this->company $company;
  55.         return $this;
  56.     }
  57.     public function getTask1(): ?string
  58.     {
  59.         return $this->task1;
  60.     }
  61.     public function setTask1(?string $task1): self
  62.     {
  63.         $this->task1 $task1;
  64.         return $this;
  65.     }
  66.     public function getTask2(): ?string
  67.     {
  68.         return $this->task2;
  69.     }
  70.     public function setTask2(?string $task2): self
  71.     {
  72.         $this->task2 $task2;
  73.         return $this;
  74.     }
  75.     public function getTask3(): ?string
  76.     {
  77.         return $this->task3;
  78.     }
  79.     public function setTask3(?string $task3): self
  80.     {
  81.         $this->task3 $task3;
  82.         return $this;
  83.     }
  84.     public function getTask4(): ?string
  85.     {
  86.         return $this->task4;
  87.     }
  88.     public function setTask4(?string $task4): self
  89.     {
  90.         $this->task4 $task4;
  91.         return $this;
  92.     }
  93. }