Subversion Repositories Applications.framework

Compare Revisions

Ignore whitespace Rev 498 → Rev 499

/branches/v0.3-aleaume/framework/RestClient.php
15,7 → 15,7
const HTTP_URL_REQUETE_SEPARATEUR = '&';
const HTTP_URL_REQUETE_CLE_VALEUR_SEPARATEUR = '=';
private $http_methodes = array('GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'OPTIONS', 'CONNECT', 'TRACE');
protected $parametres = null;
protected $parametres = array();
private $url = null;
private $reponse_entetes = null;
 
40,7 → 40,7
}
 
public function nettoyerParametres() {
$this->parametres = null;
$this->parametres = array();
}
 
//+----------------------------------------------------------------------------------------------------------------+
157,4 → 157,4
private function reinitialiser() {
$this->nettoyerParametres();
}
}
}