<?php
namespace App\Entity;
use App\Repository\MoisSemaineRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MoisSemaineRepository::class)]
class MoisSemaine
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mois = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
private ?string $semaines = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $annee = null;
#[ORM\Column(nullable: true)]
private ?int $numero_php = null;
public function getId(): ?int
{
return $this->id;
}
public function getMois(): ?string
{
return $this->mois;
}
public function setMois(?string $mois): static
{
$this->mois = $mois;
return $this;
}
public function getSemaines(): ?string
{
return $this->semaines;
}
public function setSemaines(?string $semaines): static
{
$this->semaines = $semaines;
return $this;
}
public function getAnnee(): ?string
{
return $this->annee;
}
public function setAnnee(?string $annee): static
{
$this->annee = $annee;
return $this;
}
public function getNumeroPhp(): ?int
{
return $this->numero_php;
}
public function setNumeroPhp(?int $numero_php): static
{
$this->numero_php = $numero_php;
return $this;
}
}