src/Entity/Information.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InformationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=InformationRepository::class)
  7.  */
  8. class Information
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255, nullable=true)
  18.      */
  19.     private $titre;
  20.     /**
  21.      * @ORM\Column(type="text")
  22.      */
  23.     private $description;
  24.     /**
  25.      * @ORM\ManyToOne(targetEntity=Zone::class, inversedBy="information")
  26.      * @ORM\JoinColumn(nullable=false)
  27.      */
  28.     private $zone;
  29.     /**
  30.      * @ORM\Column(type="integer", nullable=true)     
  31.      */
  32.     private $ordre;
  33.     public function getId(): ?int
  34.     {
  35.         return $this->id;
  36.     }
  37.     public function getTitre(): ?string
  38.     {
  39.         return $this->titre;
  40.     }
  41.     public function setTitre(string $titre): self
  42.     {
  43.         $this->titre $titre;
  44.         return $this;
  45.     }
  46.     public function getDescription(): ?string
  47.     {
  48.         return $this->description;
  49.     }
  50.     public function setDescription(string $description): self
  51.     {
  52.         $this->description $description;
  53.         return $this;
  54.     }
  55.     public function getZone(): ?Zone
  56.     {
  57.         return $this->zone;
  58.     }
  59.     public function setZone(?Zone $zone): self
  60.     {
  61.         $this->zone $zone;
  62.         return $this;
  63.     }
  64.     public function getOrdre(): ?int
  65.     {
  66.         return $this->ordre;
  67.     }
  68.     
  69.     public function setOrdre(int $ordre): self
  70.     {
  71.         $this->ordre $ordre;
  72.     
  73.         return $this;
  74.     }       
  75. }