Exemplo n.º 1
0
 /**
  * Renvoie les Hexas liés à l'objet
  * @return HexaCollection|Hexa[]
  */
 public function getHexas()
 {
     if (is_null($this->cacheHexas)) {
         $this->cacheHexas = HexaBusiness::getByPartie($this);
         $this->cacheHexas->store();
     }
     return $this->cacheHexas;
 }