src/Entity/SchoolAward.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. /**
  4.  * SchoolAward
  5.  */
  6. class SchoolAward
  7. {
  8.     /**
  9.      * @var int
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var string
  14.      */
  15.     private $name;
  16.     /**
  17.      * @var string
  18.      */
  19.     private $description;
  20.     /**
  21.      * Get id.
  22.      *
  23.      * @return int
  24.      */
  25.     public function getId()
  26.     {
  27.         return $this->id;
  28.     }
  29.     /**
  30.      * Set name.
  31.      *
  32.      * @param string $name
  33.      *
  34.      * @return SchoolAward
  35.      */
  36.     public function setName($name)
  37.     {
  38.         $this->name $name;
  39.         return $this;
  40.     }
  41.     /**
  42.      * Get name.
  43.      *
  44.      * @return string
  45.      */
  46.     public function getName()
  47.     {
  48.         return $this->name;
  49.     }
  50.     /**
  51.      * Set description.
  52.      *
  53.      * @param string $description
  54.      *
  55.      * @return SchoolAward
  56.      */
  57.     public function setDescription($description)
  58.     {
  59.         $this->description $description;
  60.         return $this;
  61.     }
  62.     /**
  63.      * Get description.
  64.      *
  65.      * @return string
  66.      */
  67.     public function getDescription()
  68.     {
  69.         return $this->description;
  70.     }
  71.     /**
  72.      * @var int
  73.      */
  74.     private $points;
  75.     /**
  76.      * Set points.
  77.      *
  78.      * @param int $points
  79.      *
  80.      * @return SchoolAward
  81.      */
  82.     public function setPoints($points)
  83.     {
  84.         $this->points $points;
  85.         return $this;
  86.     }
  87.     /**
  88.      * Get points.
  89.      *
  90.      * @return int
  91.      */
  92.     public function getPoints()
  93.     {
  94.         return $this->points;
  95.     }
  96.     /**
  97.      * @var \DateTime|null
  98.      */
  99.     private $endDate;
  100.     /**
  101.      * Set endDate.
  102.      *
  103.      * @param \DateTime|null $endDate
  104.      *
  105.      * @return SchoolAward
  106.      */
  107.     public function setEndDate($endDate null)
  108.     {
  109.         $this->endDate $endDate;
  110.         return $this;
  111.     }
  112.     /**
  113.      * Get endDate.
  114.      *
  115.      * @return \DateTime|null
  116.      */
  117.     public function getEndDate()
  118.     {
  119.         return $this->endDate;
  120.     }
  121. }