<?php
namespace App\Entity;
use App\Repository\ExperienceRepository;use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ExperienceRepository::class)]
class Experience{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null; #[ORM\Column(length: 255, nullable: true)] private ?string $poste = null; #[ORM\Column(length: 255, nullable: true)] private ?string $time = null; #[ORM\Column(length: 255, nullable: true)] private ?string $company = null; #[ORM\Column(length: 255, nullable: true)] private ?string $task1 = null; #[ORM\Column(length: 255, nullable: true)] private ?string $task2 = null; #[ORM\Column(length: 255, nullable: true)] private ?string $task3 = null; #[ORM\Column(length: 255, nullable: true)] private ?string $task4 = null;
public function getId(): ?int
{
return $this->id;
} public function getPoste(): ?string { return $this->poste; } public function setPoste(?string $poste): self { $this->poste = $poste; return $this; } public function getTime(): ?string { return $this->time; } public function setTime(?string $time): self { $this->time = $time; return $this; } public function getCompany(): ?string { return $this->company; } public function setCompany(?string $company): self { $this->company = $company; return $this; } public function getTask1(): ?string { return $this->task1; } public function setTask1(?string $task1): self { $this->task1 = $task1; return $this; } public function getTask2(): ?string { return $this->task2; } public function setTask2(?string $task2): self { $this->task2 = $task2; return $this; } public function getTask3(): ?string { return $this->task3; } public function setTask3(?string $task3): self { $this->task3 = $task3; return $this; } public function getTask4(): ?string { return $this->task4; } public function setTask4(?string $task4): self { $this->task4 = $task4; return $this; }
}