瀏覽代碼

Fixed a coding style issue

Missing a space between if and (
schmkr 11 年之前
父節點
當前提交
c4d7347ec5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Repository/Vcs/SvnDriver.php

+ 1 - 1
src/Composer/Repository/Vcs/SvnDriver.php

@@ -193,7 +193,7 @@ class SvnDriver extends VcsDriver
         if (null === $this->branches) {
             $this->branches = array();
 
-            if(false === $this->trunkPath) {
+            if (false === $this->trunkPath) {
                 $trunkParent = $this->baseUrl . '/';
             } else {
                 $trunkParent = $this->baseUrl . '/' . $this->trunkPath;