<?phpnamespace App\Entity;use App\Repository\TestimonialRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: TestimonialRepository::class)]class Testimonial{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: "integer")] private $id; #[ORM\Column(type: "string", length: 255)] private $firstName; #[ORM\Column(type: "string", length: 255)] private $lastName; #[ORM\Column(type: "string", length: 255)] private $email; #[ORM\Column(type: "text")] private $comment; #[ORM\Column(type: "string", length: 255)] private $feeling; #[ORM\Column(type: "datetime_immutable")] private $createdAt; #[ORM\Column(type: "boolean")] private $display; #[ORM\Column(type: "boolean")] private $rgpd; public function getId(): ?int { return $this->id; } public function getFirstName(): ?string { return $this->firstName; } public function setFirstName(string $firstName): self { $this->firstName = $firstName; return $this; } public function getLastName(): ?string { return $this->lastName; } public function setLastName(string $lastName): self { $this->lastName = $lastName; return $this; } public function getEmail(): ?string { return $this->email; } public function setEmail(string $email): self { $this->email = $email; return $this; } public function getComment(): ?string { return $this->comment; } public function setComment(string $comment): self { $this->comment = $comment; return $this; } public function getFeeling(): ?string { return $this->feeling; } public function setFeeling(string $feeling): self { $this->feeling = $feeling; return $this; } public function getCreatedAt(): ?\DateTimeImmutable { return $this->createdAt; } public function setCreatedAt(\DateTimeImmutable $createdAt): self { $this->createdAt = $createdAt; return $this; } public function getDisplay(): ?bool { return $this->display; } public function setDisplay(bool $display): self { $this->display = $display; return $this; } public function getRgpd(): ?bool { return $this->rgpd; } public function setRgpd(bool $rgpd): self { $this->rgpd = $rgpd; return $this; }}