Beispiel #1
0
 /**
  * @get given tasks
  */
 public function getGivenTasks()
 {
     return $this->hasMany(GivenTask::className(), ['teacher_id' => 'id']);
 }
Beispiel #2
0
 /**
  * @get given task
  */
 public function getGivenTask()
 {
     return $this->hasOne(GivenTask::className(), ['id' => 'given_task_id']);
 }