src/Entity/GameTimer.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class GameTimer {
  5.     /**
  6.      * @var int
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var \DateTime
  11.      */
  12.     private $startAt;
  13.     /**
  14.      * @var \DateTime
  15.      */
  16.     private $endAt;
  17.     /**
  18.      * @var \DateTime|null
  19.      */
  20.     private $pauseAt;
  21.     
  22.     /**
  23.      * @var int
  24.      */
  25.     private $duration;
  26.     /**
  27.      * @var \DateTime
  28.      */
  29.     private $createdAt;
  30.     /**
  31.      * @var \App\Entity\SchoolClass
  32.      */
  33.     private $schoolClass;
  34.     public function getId(): int {
  35.         return $this->id;
  36.     }
  37.     public function getStartAt(): \DateTime {
  38.         return $this->startAt;
  39.     }
  40.     public function getEndAt(): \DateTime {
  41.         return $this->endAt;
  42.     }
  43.     public function getPauseAt() {
  44.         return $this->pauseAt;
  45.     }
  46.     public function getDuration(): int {
  47.         return $this->duration;
  48.     }
  49.     public function getCreatedAt(): \DateTime {
  50.         return $this->createdAt;
  51.     }
  52.     public function getSchoolClass(): \App\Entity\SchoolClass {
  53.         return $this->schoolClass;
  54.     }
  55.     public function setId(int $id): void {
  56.         $this->id $id;
  57.     }
  58.     public function setStartAt(\DateTime $startAt): void {
  59.         $this->startAt $startAt;
  60.     }
  61.     public function setEndAt(\DateTime $endAt): void {
  62.         $this->endAt $endAt;
  63.     }
  64.     public function setPauseAt(\DateTime $pauseAt null): void {
  65.         $this->pauseAt $pauseAt;
  66.     }
  67.     
  68.     public function setDuration(int $duration): void {
  69.         $this->duration $duration;
  70.     }
  71.     public function setCreatedAt(\DateTime $createdAt): void {
  72.         $this->createdAt $createdAt;
  73.     }
  74.     public function setSchoolClass(\App\Entity\SchoolClass $schoolClass): void {
  75.         $this->schoolClass $schoolClass;
  76.     }
  77. }