Browse Source

Fixed a coding style issue

Missing a space between if and (
schmkr 11 years ago
parent
commit
c4d7347ec5
1 changed files with 1 additions and 1 deletions
  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) {
         if (null === $this->branches) {
             $this->branches = array();
             $this->branches = array();
 
 
-            if(false === $this->trunkPath) {
+            if (false === $this->trunkPath) {
                 $trunkParent = $this->baseUrl . '/';
                 $trunkParent = $this->baseUrl . '/';
             } else {
             } else {
                 $trunkParent = $this->baseUrl . '/' . $this->trunkPath;
                 $trunkParent = $this->baseUrl . '/' . $this->trunkPath;