Exemple #1
0
 /**
  *
  * @param string $placeName
  * @return BOL_Place
  */
 public function findPlace($placeName)
 {
     if (empty($this->placeDtoCache[$placeName])) {
         $this->placeDtoCache[$placeName] = $this->placeDao->findByName($placeName);
     }
     return $this->placeDtoCache[$placeName];
 }