Exemplo n.º 1
0
 /**
  * @param $id
  * @return Document
  * @throws NotFoundHttpException
  */
 protected function findDocument($id)
 {
     if (($model = Document::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('Документ не найден.');
     }
 }