Эх сурвалжийг харах

Set some phpdoc to isLocalUrl

Marc 11 жил өмнө
parent
commit
30049637dc

+ 5 - 0
src/Composer/Repository/Vcs/VcsDriver.php

@@ -101,6 +101,11 @@ abstract class VcsDriver implements VcsDriverInterface
         return $this->remoteFilesystem->getContents($this->originUrl, $url, false);
         return $this->remoteFilesystem->getContents($this->originUrl, $url, false);
     }
     }
 
 
+    /**
+     * Return if current repository url is local
+     * 
+     * @return boolean Repository url is local
+     */
     protected static function isLocalUrl($url)
     protected static function isLocalUrl($url)
     {
     {
         return (bool) preg_match('{^(file://|/|[a-z]:[\\\\/])}i', $url);
         return (bool) preg_match('{^(file://|/|[a-z]:[\\\\/])}i', $url);