src/Entity/Program.php line 10
<?phpnamespace App\Entity;use App\Repository\ProgramRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ProgramRepository::class)]class Program{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $horaire = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $content = null;#[ORM\Column]private ?int $orderBy = null;#[ORM\Column]private ?bool $isEnabled = true;public function getId(): ?int{return $this->id;}public function getHoraire(): ?string{return $this->horaire;}public function setHoraire(string $horaire): self{$this->horaire = $horaire;return $this;}public function getContent(): ?string{return $this->content;}public function setContent(string $content): self{$this->content = $content;return $this;}public function getOrderBy(): ?int{return $this->orderBy;}public function setOrderBy(int $orderBy): self{$this->orderBy = $orderBy;return $this;}public function isIsEnabled(): ?bool{return $this->isEnabled;}public function setIsEnabled(bool $isEnabled): self{$this->isEnabled = $isEnabled;return $this;}}