50], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'uuid' => 'Uuid', 'inicio' => 'Inicio', 'fin' => 'Fin', 'creado' => 'Creado', 'modificado' => 'Modificado', ]; } /** * Gets query for [[EventoResumenParticipantes]]. * * @return \yii\db\ActiveQuery */ public function getEventoResumenParticipantes() { return $this->hasMany(EventoResumenParticipante::class, ['idEventoResumen' => 'id']); } }