src/Entity/SchoolType.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class SchoolType {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $name;
  13.     /**
  14.      * @var string
  15.      */
  16.     private $shortName;
  17.     /**
  18.      * @var \App\Entity\SchoolTypeCategory
  19.      */
  20.     private $schoolTypeCategory;
  21.     /**
  22.      * Get id
  23.      *
  24.      * @return integer
  25.      */
  26.     public function getId() {
  27.         return $this->id;
  28.     }
  29.     /**
  30.      * Set name
  31.      *
  32.      * @param string $name
  33.      *
  34.      * @return SchoolType
  35.      */
  36.     public function setName($name) {
  37.         $this->name $name;
  38.         return $this;
  39.     }
  40.     /**
  41.      * Get name
  42.      *
  43.      * @return string
  44.      */
  45.     public function getName() {
  46.         return $this->name;
  47.     }
  48.     /**
  49.      * Set shortName.
  50.      *
  51.      * @param string $shortName
  52.      *
  53.      * @return SchoolType
  54.      */
  55.     public function setShortName($shortName) {
  56.         $this->shortName $shortName;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get shortname.
  61.      *
  62.      * @return string
  63.      */
  64.     public function getShortName() {
  65.         return $this->shortName;
  66.     }
  67.     /**
  68.      * Set schoolTypeCategory.
  69.      *
  70.      * @param \App\Entity\SchoolTypeCategory|null $schoolTypeCategory
  71.      *
  72.      * @return SchoolType
  73.      */
  74.     public function setSchoolTypeCategory(\App\Entity\SchoolTypeCategory $schoolTypeCategory null) {
  75.         $this->schoolTypeCategory $schoolTypeCategory;
  76.         return $this;
  77.     }
  78.     /**
  79.      * Get schoolTypeCategory.
  80.      *
  81.      * @return \App\Entity\SchoolTypeCategory|null
  82.      */
  83.     public function getSchoolTypeCategory() {
  84.         return $this->schoolTypeCategory;
  85.     }
  86. }