示例#1
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->addRole("ROLE_PROFESSOR");
     $this->professors = new ArrayCollection();
     $this->students = new ArrayCollection();
 }
示例#2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->addRole("ROLE_STUDENT");
     $this->professors = new ArrayCollection();
     $this->repeatedLevels = new ArrayCollection();
     $this->balance = 0;
 }