src/Entity/Commentaire.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CommentaireRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassCommentaireRepository::class)]
  7. class Commentaire
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::TEXT)]
  14.     private ?string $comment null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  16.     private ?\DateTimeInterface $datepubli null;
  17.     #[ORM\Column]
  18.     private ?bool $valide null;
  19.     #[ORM\ManyToOne(inversedBy'commentaires')]
  20.     private ?User $auteur null;
  21.     #[ORM\ManyToOne(inversedBy'commentaires')]
  22.     private ?Protocole $protocole null;
  23.     #[ORM\ManyToOne(inversedBy'commentaires')]
  24.     private ?Materiel $materiel null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getComment(): ?string
  30.     {
  31.         return $this->comment;
  32.     }
  33.     public function setComment(string $comment): self
  34.     {
  35.         $this->comment $comment;
  36.         return $this;
  37.     }
  38.     public function getDatepubli(): ?\DateTimeInterface
  39.     {
  40.         return $this->datepubli;
  41.     }
  42.     public function setDatepubli(\DateTimeInterface $datepubli): self
  43.     {
  44.         $this->datepubli $datepubli;
  45.         return $this;
  46.     }
  47.     public function isValide(): ?bool
  48.     {
  49.         return $this->valide;
  50.     }
  51.     public function setValide(bool $valide): self
  52.     {
  53.         $this->valide $valide;
  54.         return $this;
  55.     }
  56.     public function getAuteur(): ?User
  57.     {
  58.         return $this->auteur;
  59.     }
  60.     public function setAuteur(?User $auteur): self
  61.     {
  62.         $this->auteur $auteur;
  63.         return $this;
  64.     }
  65.     public function getProtocole(): ?Protocole
  66.     {
  67.         return $this->protocole;
  68.     }
  69.     public function setProtocole(?Protocole $protocole): self
  70.     {
  71.         $this->protocole $protocole;
  72.         return $this;
  73.     }
  74.     public function getMateriel(): ?Materiel
  75.     {
  76.         return $this->materiel;
  77.     }
  78.     public function setMateriel(?Materiel $materiel): self
  79.     {
  80.         $this->materiel $materiel;
  81.         return $this;
  82.     }
  83. }