src/Entity/InfoSectionType.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class InfoSectionType
  5. {
  6.     /**
  7.      * @var int
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $name;
  14.     /**
  15.      * Get id.
  16.      *
  17.      * @return int
  18.      */
  19.     public function getId()
  20.     {
  21.         return $this->id;
  22.     }
  23.     /**
  24.      * Set name.
  25.      *
  26.      * @param string $name
  27.      *
  28.      * @return InfoSectionType
  29.      */
  30.     public function setName($name)
  31.     {
  32.         $this->name $name;
  33.         return $this;
  34.     }
  35.     /**
  36.      * Get name.
  37.      *
  38.      * @return string
  39.      */
  40.     public function getName()
  41.     {
  42.         return $this->name;
  43.     }
  44. }