Пример #1
0
 /**
  * Renvoie les Hexas liés aux Rivieres de cette collection
  * @return HexaCollection
  */
 public function getHexas()
 {
     if (is_null($this->cacheHexas)) {
         $this->cacheHexas = HexaBusiness::getFromRivieres($this);
         $this->cacheHexas->store();
     }
     return $this->cacheHexas;
 }