Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 474 → Rev 475

/trunk/scripts/bibliotheque/Conteneur.php
40,7 → 40,7
}
return $this->partages['Outils'];
}
 
public function getEfloreCommun() {
if (!isset($this->partages['EfloreCommun'])){
$this->partages['EfloreCommun'] = new EfloreCommun();
47,9 → 47,7
}
return $this->partages['EfloreCommun'];
}
 
 
public function getMessages() {
if (!isset($this->partages['Messages'])){
$this->partages['Messages'] = new Messages($this->getParametre('-v'));
56,5 → 54,12
}
return $this->partages['Messages'];
}
 
public function getRestClient() {
if (!isset($this->partages['RestClient'])){
$this->partages['RestClient'] = new RestClient();
}
return $this->partages['RestClient'];
}
}
?>