瀏覽代碼

whitespace

till 13 年之前
父節點
當前提交
061d91b4a8
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/Composer/Repository/Vcs/SvnDriver.php

+ 3 - 0
src/Composer/Repository/Vcs/SvnDriver.php

@@ -72,10 +72,13 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
             $svnCommand,
             $output
         );
+
         // this could be any failure, but let's see if it's auth related
         if ($status == 1 && $this->io->isInteractive()) {
             if ($this->useAuth === false && strpos($output, 'authorization failed:') !== false) {
+
                 $this->io->write("The Subversion server ({$this->baseUrl}) request credentials:");
+
                 $this->svnUsername = $this->io->ask("Username");
                 $this->svnPassword = $this->io->ask("Password");
                 $this->useAuth     = true;