コード例 #1
0
ファイル: Mentor.php プロジェクト: eliberis/academicbuddy
 public function __construct()
 {
     parent::__construct();
     $this->courses = new ArrayCollection();
     $this->addRole("ROLE_MENTOR");
     $this->addCourse(new Course());
     // an empty Course for the registration form
 }
コード例 #2
0
ファイル: Pupil.php プロジェクト: eliberis/academicbuddy
 public function __construct()
 {
     parent::__construct();
     $this->courses = new ArrayCollection();
     $this->addRole("ROLE_PUPIL");
 }