/**
* @return ActiveQuery
*/
public function getUser(): ActiveQuery
{
return $this->hasOne(Customer::class,['id' => 'customer_id'])->select(['id', 'rating_consumer']);
}
Часть fields()
'user' => function () {
return $this->user;
},