1
0
Fork 0
pull/736/merge
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\DependencyResolver\Operation;
/**
* Solver operation interface.
*

View File

@ -107,7 +107,6 @@ class RuleSet implements \IteratorAggregate, \Countable
return new RuleSetIterator($rules);
}
public function getIteratorWithout($types)
{
if (!is_array($types)) {

View File

@ -12,7 +12,6 @@
namespace Composer\Downloader;
/**
* Downloader for pear packages
*

View File

@ -12,7 +12,6 @@
namespace Composer\Downloader;
/**
* Downloader for phar files
*

View File

@ -12,7 +12,6 @@
namespace Composer\Downloader;
/**
* Downloader for tar files: tar, tar.gz or tar.bz2
*

View File

@ -529,7 +529,7 @@ class Installer
/**
* set whether to run scripts or not
*
* @param boolean $runScripts
* @param boolean $runScripts
* @return Installer
*/
public function setRunScripts($runScripts = true)

View File

@ -12,11 +12,8 @@
namespace Composer\Installer;
use Composer\IO\IOInterface;
use Composer\Downloader\DownloadManager;
use Composer\Repository\InstalledRepositoryInterface;
use Composer\Package\PackageInterface;
use Composer\Util\Filesystem;
/**
* Does not install anything but marks packages installed in the repo

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);
}