Пример #1
0
 /**
  * Renvoie une instance du modèle identifiée par sa clé primaire.
  * Si cette clé ne correspond à aucun objet, une erreur 404 est lancée.
  *
  * @param string $id
  * @return WebText
  * @throws NotFoundHttpException
  */
 protected function findModel($id)
 {
     if (($model = WebText::findOne($id)) !== null) {
         return $model;
     }
     throw new NotFoundHttpException('Modèle introuvable : #' . $id);
 }