/**
  * @return \yii\db\ActiveQuery
  */
 public function getManutencao()
 {
     return $this->hasMany(Manutencao::className(), ['id_motorista' => 'cnh']);
 }
 /**
  * Finds the Manutencao model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Manutencao the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Manutencao::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getManutencaos()
 {
     return $this->hasMany(Manutencao::className(), ['id_veiculo' => 'renavam']);
 }