Jordi Boggiano 13 years ago
parent
commit
1277277ec6
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

@@ -18,7 +18,7 @@ class SvnDriver implements VcsDriverInterface
     public function __construct($url)
     public function __construct($url)
     {
     {
         $this->url = $this->baseUrl = rtrim($url, '/');
         $this->url = $this->baseUrl = rtrim($url, '/');
-        if (($pos = strrpos($url, '/trunk')) !== false) {
+        if (false !== ($pos = strrpos($url, '/trunk'))) {
             $this->baseUrl = substr($url, 0, $pos);
             $this->baseUrl = substr($url, 0, $pos);
         }
         }
     }
     }