Skip to content

Commit

Permalink
change visibility to protected for 'setClientSoap'
Browse files Browse the repository at this point in the history
  • Loading branch information
ke20 committed Feb 18, 2016
1 parent 4c8af8b commit 7a6e262
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/YsApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -1101,17 +1101,13 @@ public function getArchivedFile($iua)
* FIN WEB SERVICES D'ARCHIVAGE
***********************************************************/

/***********************************************************
* METHODES PRIVEES
***********************************************************/

/**
* Permet de mettre en place le client de la requête en fonction du WSDL.
*
* @param $urlWsdl
* @return \nusoap_client
*/
private function setClientSoap($urlWsdl)
protected function setClientSoap($urlWsdl)
{
// Instanciation du client SOAP
$this->client = new \nusoap_client($urlWsdl, false, false, false, false, false, 0, 1000);
Expand Down Expand Up @@ -1150,6 +1146,10 @@ private function setClientSoap($urlWsdl)
return $this->client;
}

/***********************************************************
* METHODES PRIVEES
***********************************************************/

/**
* Permet de générer les headers nécessaire à l'authentification de l'utilisateur final.
*
Expand Down

0 comments on commit 7a6e262

Please sign in to comment.