コード例 #1
0
ファイル: Professor.php プロジェクト: aBMania/mathsup
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->addRole("ROLE_PROFESSOR");
     $this->professors = new ArrayCollection();
     $this->students = new ArrayCollection();
 }
コード例 #2
0
ファイル: Student.php プロジェクト: aBMania/mathsup
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->addRole("ROLE_STUDENT");
     $this->professors = new ArrayCollection();
     $this->repeatedLevels = new ArrayCollection();
     $this->balance = 0;
 }