1
0
Fork 0

Merge remote-tracking branch 'origin/master'

pull/2294/head
Jordi Boggiano 2013-09-26 11:57:39 +02:00
commit ff404f8bd0
1 changed files with 5 additions and 0 deletions

View File

@ -101,6 +101,11 @@ abstract class VcsDriver implements VcsDriverInterface
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)
{
return (bool) preg_match('{^(file://|/|[a-z]:[\\\\/])}i', $url);