1
0
Fork 0

Make auth credential creation private

pull/3026/head
Benjamin Grandfond 2014-06-03 13:34:58 +02:00
parent a21b0f82db
commit 31b95ed02c
1 changed files with 2 additions and 2 deletions

View File

@ -281,7 +281,7 @@ class Svn
*
* @return bool
*/
protected function createAuthFromConfig()
private function createAuthFromConfig()
{
if (!$this->config->has('http-basic')) {
return $this->hasAuth = false;
@ -304,7 +304,7 @@ class Svn
*
* @return bool
*/
protected function createAuthFromUrl()
private function createAuthFromUrl()
{
$uri = parse_url($this->url);
if (empty($uri['user'])) {