Ejemplo n.º 1
0
 /**
  * Get banner zone or 404.
  *
  * @param int $bannerZoneId
  *
  * @return BannerZoneInterface
  *
  * @throws NotFoundHttpException
  */
 private function getBannerZoneOr404($bannerZoneId)
 {
     $bannerZone = $this->bannerZoneManager->findById($bannerZoneId);
     if (null === $bannerZone) {
         throw new NotFoundHttpException(sprintf('Not found %s banner zone', $bannerZoneId));
     }
     return $bannerZone;
 }