<?phpnamespace App\Entity;use App\Repository\FormulaireThematiqueRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: FormulaireThematiqueRepository::class)]class FormulaireThematique{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private ?int $id = null; #[ORM\Column(type: 'string', length: 255, nullable: true)] private ?string $name= null; #[ORM\Column(type: 'text', nullable: true)] private ?string $destinataires= null; #[ORM\Column(type: 'boolean', nullable: true)] private ?bool $bool_lenord; #[ORM\Column(type: 'boolean', nullable: true)] private ?bool $bool_info; #[ORM\Column(type: 'boolean', nullable: true)] private ?bool $bool_services; #[ORM\Column(type: 'string', length: 255, nullable: true)] private ?string $nameSmall= null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function setName(?string $name): self { $this->name = $name; return $this; } public function getDestinataires(): ?string { return $this->destinataires; } public function setDestinataires(?string $destinataires): self { $this->destinataires = $destinataires; return $this; } public function isBoolLenord(): ?bool { return $this->bool_lenord; } public function setBoolLenord(?bool $bool_lenord): self { $this->bool_lenord = $bool_lenord; return $this; } public function isBoolInfo(): ?bool { return $this->bool_info; } public function setBoolInfo(?bool $bool_info): self { $this->bool_info = $bool_info; return $this; } public function isBoolServices(): ?bool { return $this->bool_services; } public function setBoolServices(?bool $bool_services): self { $this->bool_services = $bool_services; return $this; } public function getNameSmall(): ?string { return $this->nameSmall; } public function setNameSmall(?string $nameSmall): self { $this->nameSmall = $nameSmall; return $this; }}