src\Entity\FichierFormation.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\FichierFormationRepository")
  6.  */
  7. class FichierFormation
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="string", length=255)
  17.      */
  18.     private $contenu;
  19.     /**
  20.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="fichierFormations")
  21.      */
  22.     private $user;
  23.     /**
  24.      * @ORM\Column(type="datetime")
  25.      */
  26.     private $created_at;
  27.     /**
  28.      * @ORM\ManyToOne(targetEntity="App\Entity\ChapitreFormation", inversedBy="fichiers")
  29.      * @ORM\JoinColumn(nullable=false)
  30.      */
  31.     private $chapitre;
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getContenu(): ?string
  37.     {
  38.         return $this->contenu;
  39.     }
  40.     public function setContenu(string $contenu): self
  41.     {
  42.         $this->contenu $contenu;
  43.         return $this;
  44.     }
  45.     public function getUser(): ?User
  46.     {
  47.         return $this->user;
  48.     }
  49.     public function setUser(?User $user): self
  50.     {
  51.         $this->user $user;
  52.         return $this;
  53.     }
  54.     public function getCreatedAt(): ?\DateTimeInterface
  55.     {
  56.         return $this->created_at;
  57.     }
  58.     public function setCreatedAt(\DateTimeInterface $created_at): self
  59.     {
  60.         $this->created_at $created_at;
  61.         return $this;
  62.     }
  63.     public function getChapitre(): ?ChapitreFormation
  64.     {
  65.         return $this->chapitre;
  66.     }
  67.     public function setChapitre(?ChapitreFormation $chapitre): self
  68.     {
  69.         $this->chapitre $chapitre;
  70.         return $this;
  71.     }
  72. }