function () { return $this->answers; } ]; } /** * @return string[] */ public function extraFields(): array { return []; } /** * @return ActiveQuery */ public function getAnswers(): ActiveQuery { return $this->hasMany(Answer::class, ['question_id' => 'id']); } }