/** * Renvoie les Productions liés à l'objet * @return ProductionCollection */ public function getProductions() { if (is_null($this->cacheProductions)) { $this->cacheProductions = ProductionBusiness::getByBatiment($this); $this->cacheProductions->store(); } return $this->cacheProductions; }