From 6417a86651efd6c0f8a38afa43261ee03d3fcb07 Mon Sep 17 00:00:00 2001 From: till Date: Thu, 8 Mar 2012 15:25:44 +0100 Subject: [PATCH] * fix docblocks --- src/Composer/Repository/Vcs/SvnDriver.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/Composer/Repository/Vcs/SvnDriver.php b/src/Composer/Repository/Vcs/SvnDriver.php index 2d428f6d4..8d1972d73 100644 --- a/src/Composer/Repository/Vcs/SvnDriver.php +++ b/src/Composer/Repository/Vcs/SvnDriver.php @@ -31,6 +31,16 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface */ protected $svnPassword = ''; + /** + * __construct + * + * @param string $url + * @param IOInterface $io + * @param ProcessExecutor $process + * + * @return $this + * @uses self::detectSvnAuth() + */ public function __construct($url, IOInterface $io, ProcessExecutor $process = null) { parent::__construct($this->baseUrl = rtrim($url, '/'), $io, $process); @@ -209,9 +219,10 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface /** * Return the credential string for the svn command. * - * --no-auth-cache when credentials are present + * Adds --no-auth-cache when credentials are present. * * @return string + * @uses self::$useAuth */ public function getSvnCredentialString() {