src/Entity/GameQuiz.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. /**
  5.  * GameQuiz
  6.  */
  7. class GameQuiz {
  8.     /**
  9.      * @var int
  10.      */
  11.     private $id;
  12.     /**
  13.      * @var \Doctrine\Common\Collections\Collection
  14.      */
  15.     private $questions;    
  16.     
  17.     /**
  18.      * @var \DateTime
  19.      */
  20.     private $createdAt;
  21.     /**
  22.      * Constructor
  23.      */
  24.     public function __construct() {
  25.         $this->questions = new ArrayCollection();
  26.     }    
  27.     
  28.     public function getId() {
  29.         return $this->id;
  30.     }
  31.     public function getQuestions() {
  32.         return $this->questions;
  33.     }
  34.     public function getCreatedAt() {
  35.         return $this->createdAt;
  36.     }
  37.     public function setId(int $id) {
  38.         $this->id $id;
  39.     }
  40.     public function setQuestions($questions) {
  41.         $this->questions $questions;
  42.     }
  43.     public function setCreatedAt($createdAt) {
  44.         $this->createdAt $createdAt;
  45.     }
  46. }