コード例 #1
0
ファイル: Course.php プロジェクト: nstojanovickg/diplomski
 /**
  * @param ChildStudent $student The ChildStudent object to add.
  */
 protected function doAddStudent(ChildStudent $student)
 {
     $this->collStudents[] = $student;
     $student->setCourse($this);
 }