1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00
This commit is contained in:
Jordi Boggiano 2012-05-28 01:58:49 +02:00
parent 8c16c1bbef
commit d21032ace5
11 changed files with 2 additions and 13 deletions

View file

@ -12,7 +12,6 @@
namespace Composer\Repository;
/**
* Installed array repository.
*

View file

@ -12,7 +12,6 @@
namespace Composer\Repository;
/**
* Installed filesystem repository.
*

View file

@ -12,7 +12,6 @@
namespace Composer\Repository;
/**
* Installable repository interface.
*

View file

@ -75,7 +75,7 @@ class HgDriver extends VcsDriver
*/
public function getSource($identifier)
{
$label = array_search($identifier, (array)$this->tags) ? : $identifier;
$label = array_search($identifier, (array) $this->tags) ? : $identifier;
return array('type' => 'hg', 'url' => $this->getUrl(), 'reference' => $label);
}