1
0
Fork 0

Fix @inheritDoc annotations

pull/10234/head
Jordi Boggiano 2021-10-27 15:47:42 +02:00
parent 2992e8651a
commit c65d09dff7
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
65 changed files with 423 additions and 423 deletions

View File

@ -174,7 +174,7 @@ use Composer\Installer\LibraryInstaller;
class TemplateInstaller extends LibraryInstaller class TemplateInstaller extends LibraryInstaller
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallPath(PackageInterface $package) public function getInstallPath(PackageInterface $package)
{ {
@ -191,7 +191,7 @@ class TemplateInstaller extends LibraryInstaller
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function supports($packageType) public function supports($packageType)
{ {

View File

@ -132,7 +132,7 @@ abstract class BaseCommand extends Command
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @return void * @return void
*/ */

View File

@ -119,7 +119,7 @@ EOT
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isProxyCommand() public function isProxyCommand()
{ {

View File

@ -29,7 +29,7 @@ use Symfony\Component\Console\Output\OutputInterface;
class HomeCommand extends BaseCommand class HomeCommand extends BaseCommand
{ {
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @return void * @return void
*/ */
@ -58,7 +58,7 @@ EOT
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
{ {

View File

@ -53,7 +53,7 @@ class InitCommand extends BaseCommand
private $repositorySets; private $repositorySets;
/** /**
* {@inheritdoc} * @inheritDoc
* *
* @return void * @return void
*/ */
@ -90,7 +90,7 @@ EOT
} }
/** /**
* {@inheritdoc} * @inheritDoc
* *
* @return int * @return int
* @throws \Seld\JsonLint\ParsingException * @throws \Seld\JsonLint\ParsingException
@ -224,7 +224,7 @@ EOT
} }
/** /**
* {@inheritdoc} * @inheritDoc
* *
* @return void * @return void
*/ */

View File

@ -97,7 +97,7 @@ EOT
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isProxyCommand() public function isProxyCommand()
{ {

View File

@ -51,7 +51,7 @@ EOT
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output)
{ {

View File

@ -49,7 +49,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getName() public function getName()
{ {
@ -57,7 +57,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function addRepository($name, $config, $append = true) public function addRepository($name, $config, $append = true)
{ {
@ -86,7 +86,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function removeRepository($name) public function removeRepository($name)
{ {
@ -96,7 +96,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function addConfigSetting($name, $value) public function addConfigSetting($name, $value)
{ {
@ -116,7 +116,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function removeConfigSetting($name) public function removeConfigSetting($name)
{ {
@ -136,7 +136,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function addProperty($name, $value) public function addProperty($name, $value)
{ {
@ -159,7 +159,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function removeProperty($name) public function removeProperty($name)
{ {
@ -182,7 +182,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function addLink($type, $name, $value) public function addLink($type, $name, $value)
{ {
@ -192,7 +192,7 @@ class JsonConfigSource implements ConfigSourceInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function removeLink($type, $name) public function removeLink($type, $name)
{ {

View File

@ -117,7 +117,7 @@ class Application extends BaseApplication
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function run(InputInterface $input = null, OutputInterface $output = null) public function run(InputInterface $input = null, OutputInterface $output = null)
{ {
@ -129,7 +129,7 @@ class Application extends BaseApplication
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function doRun(InputInterface $input, OutputInterface $output) public function doRun(InputInterface $input, OutputInterface $output)
{ {
@ -522,7 +522,7 @@ class Application extends BaseApplication
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLongVersion() public function getLongVersion()
{ {
@ -540,7 +540,7 @@ class Application extends BaseApplication
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getDefaultInputDefinition() protected function getDefaultInputDefinition()
{ {

View File

@ -44,7 +44,7 @@ class InstallOperation extends SolverOperation implements OperationInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function show($lock) public function show($lock)
{ {

View File

@ -44,7 +44,7 @@ class MarkAliasInstalledOperation extends SolverOperation implements OperationIn
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function show($lock) public function show($lock)
{ {

View File

@ -44,7 +44,7 @@ class MarkAliasUninstalledOperation extends SolverOperation implements Operation
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function show($lock) public function show($lock)
{ {

View File

@ -32,7 +32,7 @@ abstract class SolverOperation implements OperationInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function __toString() public function __toString()
{ {

View File

@ -44,7 +44,7 @@ class UninstallOperation extends SolverOperation implements OperationInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function show($lock) public function show($lock)
{ {

View File

@ -65,7 +65,7 @@ class UpdateOperation extends SolverOperation implements OperationInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function show($lock) public function show($lock)
{ {

View File

@ -53,7 +53,7 @@ abstract class ArchiveDownloader extends FileDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @param bool $output * @param bool $output
* *
@ -215,7 +215,7 @@ abstract class ArchiveDownloader extends FileDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getInstallOperationAppendix(PackageInterface $package, $path) protected function getInstallOperationAppendix(PackageInterface $package, $path)
{ {

View File

@ -93,7 +93,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallationSource() public function getInstallationSource()
{ {
@ -101,7 +101,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @param bool $output * @param bool $output
*/ */
@ -286,7 +286,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function prepare($type, PackageInterface $package, $path, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, $path, PackageInterface $prevPackage = null)
{ {
@ -294,7 +294,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup($type, PackageInterface $package, $path, PackageInterface $prevPackage = null) public function cleanup($type, PackageInterface $package, $path, PackageInterface $prevPackage = null)
{ {
@ -325,7 +325,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @param bool $output * @param bool $output
*/ */
@ -398,7 +398,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(PackageInterface $initial, PackageInterface $target, $path) public function update(PackageInterface $initial, PackageInterface $target, $path)
{ {
@ -419,7 +419,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @param bool $output * @param bool $output
*/ */
@ -483,7 +483,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @throws \RuntimeException * @throws \RuntimeException
*/ */
public function getLocalChanges(PackageInterface $package, $targetDir) public function getLocalChanges(PackageInterface $package, $targetDir)

View File

@ -21,7 +21,7 @@ use Composer\Util\ProcessExecutor;
class FossilDownloader extends VcsDownloader class FossilDownloader extends VcsDownloader
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null) protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null)
{ {
@ -29,7 +29,7 @@ class FossilDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doInstall(PackageInterface $package, $path, $url) protected function doInstall(PackageInterface $package, $path, $url)
{ {
@ -57,7 +57,7 @@ class FossilDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url) protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url)
{ {
@ -80,7 +80,7 @@ class FossilDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLocalChanges(PackageInterface $package, $path) public function getLocalChanges(PackageInterface $package, $path)
{ {
@ -94,7 +94,7 @@ class FossilDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getCommitLogs($fromReference, $toReference, $path) protected function getCommitLogs($fromReference, $toReference, $path)
{ {
@ -118,7 +118,7 @@ class FossilDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function hasMetadataRepository($path) protected function hasMetadataRepository($path)
{ {

View File

@ -55,7 +55,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null) protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null)
{ {
@ -80,7 +80,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doInstall(PackageInterface $package, $path, $url) protected function doInstall(PackageInterface $package, $path, $url)
{ {
@ -138,7 +138,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url) protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url)
{ {
@ -203,7 +203,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLocalChanges(PackageInterface $package, $path) public function getLocalChanges(PackageInterface $package, $path)
{ {
@ -318,7 +318,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function cleanChanges(PackageInterface $package, $path, $update) protected function cleanChanges(PackageInterface $package, $path, $update)
{ {
@ -405,7 +405,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function reapplyChanges($path) protected function reapplyChanges($path)
{ {
@ -522,7 +522,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getCommitLogs($fromReference, $toReference, $path) protected function getCommitLogs($fromReference, $toReference, $path)
{ {
@ -618,7 +618,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function hasMetadataRepository($path) protected function hasMetadataRepository($path)
{ {

View File

@ -22,7 +22,7 @@ use Composer\Util\Hg as HgUtils;
class HgDownloader extends VcsDownloader class HgDownloader extends VcsDownloader
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null) protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null)
{ {
@ -34,7 +34,7 @@ class HgDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doInstall(PackageInterface $package, $path, $url) protected function doInstall(PackageInterface $package, $path, $url)
{ {
@ -56,7 +56,7 @@ class HgDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url) protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url)
{ {
@ -79,7 +79,7 @@ class HgDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLocalChanges(PackageInterface $package, $path) public function getLocalChanges(PackageInterface $package, $path)
{ {
@ -93,7 +93,7 @@ class HgDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getCommitLogs($fromReference, $toReference, $path) protected function getCommitLogs($fromReference, $toReference, $path)
{ {
@ -107,7 +107,7 @@ class HgDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function hasMetadataRepository($path) protected function hasMetadataRepository($path)
{ {

View File

@ -36,7 +36,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
const STRATEGY_MIRROR = 20; const STRATEGY_MIRROR = 20;
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true) public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true)
{ {
@ -72,7 +72,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function install(PackageInterface $package, $path, $output = true) public function install(PackageInterface $package, $path, $output = true)
{ {
@ -158,7 +158,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function remove(PackageInterface $package, $path, $output = true) public function remove(PackageInterface $package, $path, $output = true)
{ {
@ -203,7 +203,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getVcsReference(PackageInterface $package, $path) public function getVcsReference(PackageInterface $package, $path)
{ {
@ -221,7 +221,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getInstallOperationAppendix(PackageInterface $package, $path) protected function getInstallOperationAppendix(PackageInterface $package, $path)
{ {

View File

@ -25,7 +25,7 @@ class PerforceDownloader extends VcsDownloader
protected $perforce; protected $perforce;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null) protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null)
{ {
@ -33,7 +33,7 @@ class PerforceDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function doInstall(PackageInterface $package, $path, $url) public function doInstall(PackageInterface $package, $path, $url)
{ {
@ -98,7 +98,7 @@ class PerforceDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url) protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url)
{ {
@ -106,7 +106,7 @@ class PerforceDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLocalChanges(PackageInterface $package, $path) public function getLocalChanges(PackageInterface $package, $path)
{ {
@ -116,7 +116,7 @@ class PerforceDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getCommitLogs($fromReference, $toReference, $path) protected function getCommitLogs($fromReference, $toReference, $path)
{ {
@ -132,7 +132,7 @@ class PerforceDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function hasMetadataRepository($path) protected function hasMetadataRepository($path)
{ {

View File

@ -22,7 +22,7 @@ use Composer\Package\PackageInterface;
class PharDownloader extends ArchiveDownloader class PharDownloader extends ArchiveDownloader
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function extract(PackageInterface $package, $file, $path) protected function extract(PackageInterface $package, $file, $path)
{ {

View File

@ -28,7 +28,7 @@ class SvnDownloader extends VcsDownloader
protected $cacheCredentials = true; protected $cacheCredentials = true;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null) protected function doDownload(PackageInterface $package, $path, $url, PackageInterface $prevPackage = null)
{ {
@ -42,7 +42,7 @@ class SvnDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doInstall(PackageInterface $package, $path, $url) protected function doInstall(PackageInterface $package, $path, $url)
{ {
@ -64,7 +64,7 @@ class SvnDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url) protected function doUpdate(PackageInterface $initial, PackageInterface $target, $path, $url)
{ {
@ -88,7 +88,7 @@ class SvnDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLocalChanges(PackageInterface $package, $path) public function getLocalChanges(PackageInterface $package, $path)
{ {
@ -127,7 +127,7 @@ class SvnDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function cleanChanges(PackageInterface $package, $path, $update) protected function cleanChanges(PackageInterface $package, $path, $update)
{ {
@ -188,7 +188,7 @@ class SvnDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function getCommitLogs($fromReference, $toReference, $path) protected function getCommitLogs($fromReference, $toReference, $path)
{ {
@ -245,7 +245,7 @@ class SvnDownloader extends VcsDownloader
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function hasMetadataRepository($path) protected function hasMetadataRepository($path)
{ {

View File

@ -22,7 +22,7 @@ use Composer\Package\PackageInterface;
class TarDownloader extends ArchiveDownloader class TarDownloader extends ArchiveDownloader
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function extract(PackageInterface $package, $file, $path) protected function extract(PackageInterface $package, $file, $path)
{ {

View File

@ -50,7 +50,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallationSource() public function getInstallationSource()
{ {
@ -58,7 +58,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null) public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null)
{ {
@ -91,7 +91,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function prepare($type, PackageInterface $package, $path, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, $path, PackageInterface $prevPackage = null)
{ {
@ -108,7 +108,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup($type, PackageInterface $package, $path, PackageInterface $prevPackage = null) public function cleanup($type, PackageInterface $package, $path, PackageInterface $prevPackage = null)
{ {
@ -121,7 +121,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function install(PackageInterface $package, $path) public function install(PackageInterface $package, $path)
{ {
@ -156,7 +156,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(PackageInterface $initial, PackageInterface $target, $path) public function update(PackageInterface $initial, PackageInterface $target, $path)
{ {
@ -220,7 +220,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function remove(PackageInterface $package, $path) public function remove(PackageInterface $package, $path)
{ {
@ -236,7 +236,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getVcsReference(PackageInterface $package, $path) public function getVcsReference(PackageInterface $package, $path)
{ {

View File

@ -36,7 +36,7 @@ class ZipDownloader extends ArchiveDownloader
private $zipArchiveObject; private $zipArchiveObject;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true) public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true)
{ {

View File

@ -22,7 +22,7 @@ abstract class BaseIO implements IOInterface
protected $authentications = array(); protected $authentications = array();
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getAuthentications() public function getAuthentications()
{ {
@ -38,7 +38,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function hasAuthentication($repositoryName) public function hasAuthentication($repositoryName)
{ {
@ -46,7 +46,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getAuthentication($repositoryName) public function getAuthentication($repositoryName)
{ {
@ -58,7 +58,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setAuthentication($repositoryName, $username, $password = null) public function setAuthentication($repositoryName, $username, $password = null)
{ {
@ -66,7 +66,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function writeRaw($messages, $newline = true, $verbosity = self::NORMAL) public function writeRaw($messages, $newline = true, $verbosity = self::NORMAL)
{ {
@ -74,7 +74,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function writeErrorRaw($messages, $newline = true, $verbosity = self::NORMAL) public function writeErrorRaw($messages, $newline = true, $verbosity = self::NORMAL)
{ {
@ -109,7 +109,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function loadConfiguration(Config $config) public function loadConfiguration(Config $config)
{ {
@ -159,7 +159,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function emergency($message, array $context = array()) public function emergency($message, array $context = array())
{ {
@ -167,7 +167,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function alert($message, array $context = array()) public function alert($message, array $context = array())
{ {
@ -175,7 +175,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function critical($message, array $context = array()) public function critical($message, array $context = array())
{ {
@ -183,7 +183,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function error($message, array $context = array()) public function error($message, array $context = array())
{ {
@ -191,7 +191,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function warning($message, array $context = array()) public function warning($message, array $context = array())
{ {
@ -199,7 +199,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function notice($message, array $context = array()) public function notice($message, array $context = array())
{ {
@ -207,7 +207,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function info($message, array $context = array()) public function info($message, array $context = array())
{ {
@ -215,7 +215,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function debug($message, array $context = array()) public function debug($message, array $context = array())
{ {
@ -223,7 +223,7 @@ abstract class BaseIO implements IOInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function log($level, $message, array $context = array()) public function log($level, $message, array $context = array())
{ {

View File

@ -77,7 +77,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isInteractive() public function isInteractive()
{ {
@ -85,7 +85,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDecorated() public function isDecorated()
{ {
@ -93,7 +93,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isVerbose() public function isVerbose()
{ {
@ -101,7 +101,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isVeryVerbose() public function isVeryVerbose()
{ {
@ -109,7 +109,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDebug() public function isDebug()
{ {
@ -117,7 +117,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function write($messages, $newline = true, $verbosity = self::NORMAL) public function write($messages, $newline = true, $verbosity = self::NORMAL)
{ {
@ -125,7 +125,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function writeError($messages, $newline = true, $verbosity = self::NORMAL) public function writeError($messages, $newline = true, $verbosity = self::NORMAL)
{ {
@ -133,7 +133,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function writeRaw($messages, $newline = true, $verbosity = self::NORMAL) public function writeRaw($messages, $newline = true, $verbosity = self::NORMAL)
{ {
@ -141,7 +141,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function writeErrorRaw($messages, $newline = true, $verbosity = self::NORMAL) public function writeErrorRaw($messages, $newline = true, $verbosity = self::NORMAL)
{ {
@ -192,7 +192,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function overwrite($messages, $newline = true, $size = null, $verbosity = self::NORMAL) public function overwrite($messages, $newline = true, $size = null, $verbosity = self::NORMAL)
{ {
@ -200,7 +200,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function overwriteError($messages, $newline = true, $size = null, $verbosity = self::NORMAL) public function overwriteError($messages, $newline = true, $size = null, $verbosity = self::NORMAL)
{ {
@ -264,7 +264,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function ask($question, $default = null) public function ask($question, $default = null)
{ {
@ -276,7 +276,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function askConfirmation($question, $default = true) public function askConfirmation($question, $default = true)
{ {
@ -288,7 +288,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function askAndValidate($question, $validator, $attempts = null, $default = null) public function askAndValidate($question, $validator, $attempts = null, $default = null)
{ {
@ -302,7 +302,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function askAndHideAnswer($question) public function askAndHideAnswer($question)
{ {
@ -315,7 +315,7 @@ class ConsoleIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function select($question, $choices, $default, $attempts = false, $errorMessage = 'Value "%s" is invalid', $multiselect = false) public function select($question, $choices, $default, $attempts = false, $errorMessage = 'Value "%s" is invalid', $multiselect = false)
{ {

View File

@ -20,7 +20,7 @@ namespace Composer\IO;
class NullIO extends BaseIO class NullIO extends BaseIO
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isInteractive() public function isInteractive()
{ {
@ -28,7 +28,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isVerbose() public function isVerbose()
{ {
@ -36,7 +36,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isVeryVerbose() public function isVeryVerbose()
{ {
@ -44,7 +44,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDebug() public function isDebug()
{ {
@ -52,7 +52,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDecorated() public function isDecorated()
{ {
@ -60,35 +60,35 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function write($messages, $newline = true, $verbosity = self::NORMAL) public function write($messages, $newline = true, $verbosity = self::NORMAL)
{ {
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function writeError($messages, $newline = true, $verbosity = self::NORMAL) public function writeError($messages, $newline = true, $verbosity = self::NORMAL)
{ {
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function overwrite($messages, $newline = true, $size = 80, $verbosity = self::NORMAL) public function overwrite($messages, $newline = true, $size = 80, $verbosity = self::NORMAL)
{ {
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function overwriteError($messages, $newline = true, $size = 80, $verbosity = self::NORMAL) public function overwriteError($messages, $newline = true, $size = 80, $verbosity = self::NORMAL)
{ {
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function ask($question, $default = null) public function ask($question, $default = null)
{ {
@ -96,7 +96,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function askConfirmation($question, $default = true) public function askConfirmation($question, $default = true)
{ {
@ -104,7 +104,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function askAndValidate($question, $validator, $attempts = null, $default = null) public function askAndValidate($question, $validator, $attempts = null, $default = null)
{ {
@ -112,7 +112,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function askAndHideAnswer($question) public function askAndHideAnswer($question)
{ {
@ -120,7 +120,7 @@ class NullIO extends BaseIO
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function select($question, $choices, $default, $attempts = false, $errorMessage = 'Value "%s" is invalid', $multiselect = false) public function select($question, $choices, $default, $attempts = false, $errorMessage = 'Value "%s" is invalid', $multiselect = false)
{ {

View File

@ -67,7 +67,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function supports($packageType) public function supports($packageType)
{ {
@ -75,7 +75,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package) public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -93,7 +93,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, PackageInterface $prevPackage = null) public function download(PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -104,7 +104,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -115,7 +115,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null) public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -126,7 +126,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function install(InstalledRepositoryInterface $repo, PackageInterface $package) public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -155,7 +155,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{ {
@ -184,7 +184,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -215,7 +215,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallPath(PackageInterface $package) public function getInstallPath(PackageInterface $package)
{ {

View File

@ -35,7 +35,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function supports($packageType) public function supports($packageType)
{ {
@ -43,7 +43,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package) public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -51,7 +51,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, PackageInterface $prevPackage = null) public function download(PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -60,7 +60,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -69,7 +69,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null) public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -78,7 +78,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function install(InstalledRepositoryInterface $repo, PackageInterface $package) public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -90,7 +90,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{ {
@ -107,7 +107,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -123,7 +123,7 @@ class MetapackageInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallPath(PackageInterface $package) public function getInstallPath(PackageInterface $package)
{ {

View File

@ -25,7 +25,7 @@ use Composer\Package\PackageInterface;
class NoopInstaller implements InstallerInterface class NoopInstaller implements InstallerInterface
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function supports($packageType) public function supports($packageType)
{ {
@ -33,7 +33,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package) public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -41,7 +41,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, PackageInterface $prevPackage = null) public function download(PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -49,7 +49,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -57,7 +57,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null) public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -65,7 +65,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function install(InstalledRepositoryInterface $repo, PackageInterface $package) public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -77,7 +77,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{ {
@ -94,7 +94,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -107,7 +107,7 @@ class NoopInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallPath(PackageInterface $package) public function getInstallPath(PackageInterface $package)
{ {

View File

@ -40,7 +40,7 @@ class PluginInstaller extends LibraryInstaller
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function supports($packageType) public function supports($packageType)
{ {
@ -48,7 +48,7 @@ class PluginInstaller extends LibraryInstaller
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, PackageInterface $prevPackage = null) public function download(PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -61,7 +61,7 @@ class PluginInstaller extends LibraryInstaller
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function install(InstalledRepositoryInterface $repo, PackageInterface $package) public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -84,7 +84,7 @@ class PluginInstaller extends LibraryInstaller
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{ {

View File

@ -54,7 +54,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package) public function isInstalled(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -62,7 +62,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function download(PackageInterface $package, PackageInterface $prevPackage = null) public function download(PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -78,7 +78,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -86,7 +86,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null) public function cleanup($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
@ -94,7 +94,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function install(InstalledRepositoryInterface $repo, PackageInterface $package) public function install(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {
@ -102,7 +102,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{ {
@ -110,7 +110,7 @@ class ProjectInstaller implements InstallerInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{ {

View File

@ -81,7 +81,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getVersion() public function getVersion()
{ {
@ -89,7 +89,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getStability() public function getStability()
{ {
@ -97,7 +97,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getPrettyVersion() public function getPrettyVersion()
{ {
@ -105,7 +105,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDev() public function isDev()
{ {
@ -113,7 +113,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRequires() public function getRequires()
{ {
@ -121,7 +121,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @return array<string|int, Link> * @return array<string|int, Link>
*/ */
public function getConflicts() public function getConflicts()
@ -130,7 +130,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @return array<string|int, Link> * @return array<string|int, Link>
*/ */
public function getProvides() public function getProvides()
@ -139,7 +139,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @return array<string|int, Link> * @return array<string|int, Link>
*/ */
public function getReplaces() public function getReplaces()
@ -148,7 +148,7 @@ class AliasPackage extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDevRequires() public function getDevRequires()
{ {

View File

@ -34,7 +34,7 @@ class PharArchiver implements ArchiverInterface
); );
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function archive($sources, $target, $format, array $excludes = array(), $ignoreFilters = false) public function archive($sources, $target, $format, array $excludes = array(), $ignoreFilters = false)
{ {
@ -95,7 +95,7 @@ class PharArchiver implements ArchiverInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function supports($format, $sourceType) public function supports($format, $sourceType)
{ {

View File

@ -26,7 +26,7 @@ class ZipArchiver implements ArchiverInterface
); );
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function archive($sources, $target, $format, array $excludes = array(), $ignoreFilters = false) public function archive($sources, $target, $format, array $excludes = array(), $ignoreFilters = false)
{ {
@ -77,7 +77,7 @@ class ZipArchiver implements ArchiverInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function supports($format, $sourceType) public function supports($format, $sourceType)
{ {

View File

@ -76,7 +76,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getName() public function getName()
{ {
@ -84,7 +84,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getPrettyName() public function getPrettyName()
{ {
@ -92,7 +92,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getNames($provides = true) public function getNames($provides = true)
{ {
@ -114,7 +114,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setId($id) public function setId($id)
{ {
@ -122,7 +122,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getId() public function getId()
{ {
@ -130,7 +130,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setRepository(RepositoryInterface $repository) public function setRepository(RepositoryInterface $repository)
{ {
@ -141,7 +141,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRepository() public function getRepository()
{ {
@ -200,7 +200,7 @@ abstract class BasePackage implements PackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getFullPrettyVersion($truncate = true, $displayMode = PackageInterface::DISPLAY_SOURCE_REF_IF_DEV) public function getFullPrettyVersion($truncate = true, $displayMode = PackageInterface::DISPLAY_SOURCE_REF_IF_DEV)
{ {

View File

@ -45,7 +45,7 @@ class CompletePackage extends Package implements CompletePackageInterface
protected $archiveExcludes = array(); protected $archiveExcludes = array();
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setScripts(array $scripts) public function setScripts(array $scripts)
{ {
@ -53,7 +53,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getScripts() public function getScripts()
{ {
@ -61,7 +61,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setRepositories(array $repositories) public function setRepositories(array $repositories)
{ {
@ -69,7 +69,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRepositories() public function getRepositories()
{ {
@ -77,7 +77,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setLicense(array $license) public function setLicense(array $license)
{ {
@ -85,7 +85,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getLicense() public function getLicense()
{ {
@ -93,7 +93,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setKeywords(array $keywords) public function setKeywords(array $keywords)
{ {
@ -101,7 +101,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getKeywords() public function getKeywords()
{ {
@ -109,7 +109,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setAuthors(array $authors) public function setAuthors(array $authors)
{ {
@ -117,7 +117,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getAuthors() public function getAuthors()
{ {
@ -125,7 +125,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setDescription($description) public function setDescription($description)
{ {
@ -133,7 +133,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDescription() public function getDescription()
{ {
@ -141,7 +141,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setHomepage($homepage) public function setHomepage($homepage)
{ {
@ -149,7 +149,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getHomepage() public function getHomepage()
{ {
@ -157,7 +157,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setSupport(array $support) public function setSupport(array $support)
{ {
@ -165,7 +165,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSupport() public function getSupport()
{ {
@ -173,7 +173,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setFunding(array $funding) public function setFunding(array $funding)
{ {
@ -181,7 +181,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getFunding() public function getFunding()
{ {
@ -189,7 +189,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isAbandoned() public function isAbandoned()
{ {
@ -197,7 +197,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setAbandoned($abandoned) public function setAbandoned($abandoned)
{ {
@ -205,7 +205,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getReplacementPackage() public function getReplacementPackage()
{ {
@ -213,7 +213,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setArchiveName($name) public function setArchiveName($name)
{ {
@ -221,7 +221,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getArchiveName() public function getArchiveName()
{ {
@ -229,7 +229,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setArchiveExcludes(array $excludes) public function setArchiveExcludes(array $excludes)
{ {
@ -237,7 +237,7 @@ class CompletePackage extends Package implements CompletePackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getArchiveExcludes() public function getArchiveExcludes()
{ {

View File

@ -108,7 +108,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDev() public function isDev()
{ {
@ -126,7 +126,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getType() public function getType()
{ {
@ -134,7 +134,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getStability() public function getStability()
{ {
@ -152,7 +152,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTargetDir() public function getTargetDir()
{ {
@ -174,7 +174,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getExtra() public function getExtra()
{ {
@ -192,7 +192,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBinaries() public function getBinaries()
{ {
@ -200,7 +200,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @return void * @return void
*/ */
@ -210,7 +210,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getInstallationSource() public function getInstallationSource()
{ {
@ -228,7 +228,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSourceType() public function getSourceType()
{ {
@ -246,7 +246,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSourceUrl() public function getSourceUrl()
{ {
@ -264,7 +264,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSourceReference() public function getSourceReference()
{ {
@ -272,7 +272,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @return void * @return void
*/ */
@ -282,7 +282,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSourceMirrors() public function getSourceMirrors()
{ {
@ -290,7 +290,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSourceUrls() public function getSourceUrls()
{ {
@ -308,7 +308,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDistType() public function getDistType()
{ {
@ -326,7 +326,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDistUrl() public function getDistUrl()
{ {
@ -344,7 +344,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDistReference() public function getDistReference()
{ {
@ -362,7 +362,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDistSha1Checksum() public function getDistSha1Checksum()
{ {
@ -370,7 +370,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @return void * @return void
*/ */
@ -380,7 +380,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDistMirrors() public function getDistMirrors()
{ {
@ -388,7 +388,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDistUrls() public function getDistUrls()
{ {
@ -396,7 +396,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTransportOptions() public function getTransportOptions()
{ {
@ -404,7 +404,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setTransportOptions(array $options) public function setTransportOptions(array $options)
{ {
@ -412,7 +412,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getVersion() public function getVersion()
{ {
@ -420,7 +420,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getPrettyVersion() public function getPrettyVersion()
{ {
@ -440,7 +440,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getReleaseDate() public function getReleaseDate()
{ {
@ -460,7 +460,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRequires() public function getRequires()
{ {
@ -480,7 +480,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @return array<string, Link> * @return array<string, Link>
*/ */
public function getConflicts() public function getConflicts()
@ -501,7 +501,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @return array<string, Link> * @return array<string, Link>
*/ */
public function getProvides() public function getProvides()
@ -522,7 +522,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
* @return array<string, Link> * @return array<string, Link>
*/ */
public function getReplaces() public function getReplaces()
@ -543,7 +543,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDevRequires() public function getDevRequires()
{ {
@ -563,7 +563,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSuggests() public function getSuggests()
{ {
@ -585,7 +585,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getAutoload() public function getAutoload()
{ {
@ -607,7 +607,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDevAutoload() public function getDevAutoload()
{ {
@ -627,7 +627,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getIncludePaths() public function getIncludePaths()
{ {
@ -647,7 +647,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getNotificationUrl() public function getNotificationUrl()
{ {
@ -665,7 +665,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isDefaultBranch() public function isDefaultBranch()
{ {
@ -673,7 +673,7 @@ class Package extends BasePackage
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setSourceDistReferences($reference) public function setSourceDistReferences($reference)
{ {

View File

@ -41,7 +41,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getAliases() public function getAliases()
{ {
@ -49,7 +49,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getMinimumStability() public function getMinimumStability()
{ {
@ -57,7 +57,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getStabilityFlags() public function getStabilityFlags()
{ {
@ -65,7 +65,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getReferences() public function getReferences()
{ {
@ -73,7 +73,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getPreferStable() public function getPreferStable()
{ {
@ -81,7 +81,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getConfig() public function getConfig()
{ {
@ -89,7 +89,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setRequires(array $require) public function setRequires(array $require)
{ {
@ -99,7 +99,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setDevRequires(array $devRequire) public function setDevRequires(array $devRequire)
{ {
@ -109,7 +109,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setConflicts(array $conflicts) public function setConflicts(array $conflicts)
{ {
@ -118,7 +118,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setProvides(array $provides) public function setProvides(array $provides)
{ {
@ -127,7 +127,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setReplaces(array $replaces) public function setReplaces(array $replaces)
{ {
@ -136,7 +136,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setAutoload(array $autoload) public function setAutoload(array $autoload)
{ {
@ -144,7 +144,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setDevAutoload(array $devAutoload) public function setDevAutoload(array $devAutoload)
{ {
@ -152,7 +152,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setStabilityFlags(array $stabilityFlags) public function setStabilityFlags(array $stabilityFlags)
{ {
@ -160,7 +160,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setMinimumStability($minimumStability) public function setMinimumStability($minimumStability)
{ {
@ -168,7 +168,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setPreferStable($preferStable) public function setPreferStable($preferStable)
{ {
@ -176,7 +176,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setConfig(array $config) public function setConfig(array $config)
{ {
@ -184,7 +184,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setReferences(array $references) public function setReferences(array $references)
{ {
@ -192,7 +192,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setAliases(array $aliases) public function setAliases(array $aliases)
{ {
@ -200,7 +200,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setSuggests(array $suggests) public function setSuggests(array $suggests)
{ {
@ -208,7 +208,7 @@ class RootAliasPackage extends CompleteAliasPackage implements RootPackageInterf
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setExtra(array $extra) public function setExtra(array $extra)
{ {

View File

@ -43,7 +43,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getMinimumStability() public function getMinimumStability()
{ {
@ -51,7 +51,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setStabilityFlags(array $stabilityFlags) public function setStabilityFlags(array $stabilityFlags)
{ {
@ -59,7 +59,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getStabilityFlags() public function getStabilityFlags()
{ {
@ -75,7 +75,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getPreferStable() public function getPreferStable()
{ {
@ -91,7 +91,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getConfig() public function getConfig()
{ {
@ -107,7 +107,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getReferences() public function getReferences()
{ {
@ -123,7 +123,7 @@ class RootPackage extends CompletePackage implements RootPackageInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getAliases() public function getAliases()
{ {

View File

@ -25,7 +25,7 @@ class VersionParser extends SemverVersionParser
private static $constraints = array(); private static $constraints = array();
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function parseConstraints($constraints) public function parseConstraints($constraints)
{ {

View File

@ -54,7 +54,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function loadPackages(array $packageMap, array $acceptableStabilities, array $stabilityFlags, array $alreadyLoaded = array()) public function loadPackages(array $packageMap, array $acceptableStabilities, array $stabilityFlags, array $alreadyLoaded = array())
{ {
@ -94,7 +94,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function findPackage($name, $constraint) public function findPackage($name, $constraint)
{ {
@ -118,7 +118,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function findPackages($name, $constraint = null) public function findPackages($name, $constraint = null)
{ {
@ -143,7 +143,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function search($query, $mode = 0, $type = null) public function search($query, $mode = 0, $type = null)
{ {
@ -173,7 +173,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function hasPackage(PackageInterface $package) public function hasPackage(PackageInterface $package)
{ {
@ -214,7 +214,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getProviders($packageName) public function getProviders($packageName)
{ {
@ -282,7 +282,7 @@ class ArrayRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getPackages() public function getPackages()
{ {

View File

@ -188,7 +188,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function findPackage($name, $constraint) public function findPackage($name, $constraint)
{ {
@ -228,7 +228,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function findPackages($name, $constraint = null) public function findPackages($name, $constraint = null)
{ {
@ -460,7 +460,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function search($query, $mode = 0, $type = null) public function search($query, $mode = 0, $type = null)
{ {
@ -730,7 +730,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
protected function initialize() protected function initialize()
{ {

View File

@ -57,7 +57,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function hasPackage(PackageInterface $package) public function hasPackage(PackageInterface $package)
{ {
@ -72,7 +72,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function findPackage($name, $constraint) public function findPackage($name, $constraint)
{ {
@ -88,7 +88,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function findPackages($name, $constraint = null) public function findPackages($name, $constraint = null)
{ {
@ -102,7 +102,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function loadPackages(array $packageMap, array $acceptableStabilities, array $stabilityFlags, array $alreadyLoaded = array()) public function loadPackages(array $packageMap, array $acceptableStabilities, array $stabilityFlags, array $alreadyLoaded = array())
{ {
@ -122,7 +122,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function search($query, $mode = 0, $type = null) public function search($query, $mode = 0, $type = null)
{ {
@ -136,7 +136,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getPackages() public function getPackages()
{ {
@ -150,7 +150,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getProviders($packageName) public function getProviders($packageName)
{ {
@ -176,7 +176,7 @@ class CompositeRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
#[\ReturnTypeWillChange] #[\ReturnTypeWillChange]
public function count() public function count()

View File

@ -81,7 +81,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function hasPackage(PackageInterface $package) public function hasPackage(PackageInterface $package)
{ {
@ -89,7 +89,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function findPackage($name, $constraint) public function findPackage($name, $constraint)
{ {
@ -101,7 +101,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function findPackages($name, $constraint = null) public function findPackages($name, $constraint = null)
{ {
@ -113,7 +113,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function loadPackages(array $packageMap, array $acceptableStabilities, array $stabilityFlags, array $alreadyLoaded = array()) public function loadPackages(array $packageMap, array $acceptableStabilities, array $stabilityFlags, array $alreadyLoaded = array())
{ {
@ -136,7 +136,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function search($query, $mode = 0, $type = null) public function search($query, $mode = 0, $type = null)
{ {
@ -152,7 +152,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getPackages() public function getPackages()
{ {
@ -167,7 +167,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getProviders($packageName) public function getProviders($packageName)
{ {
@ -182,7 +182,7 @@ class FilterRepository implements RepositoryInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
#[\ReturnTypeWillChange] #[\ReturnTypeWillChange]
public function count() public function count()

View File

@ -27,7 +27,7 @@ class InstalledArrayRepository extends WritableArrayRepository implements Instal
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isFresh() public function isFresh()
{ {

View File

@ -25,7 +25,7 @@ class InstalledFilesystemRepository extends FilesystemRepository implements Inst
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function isFresh() public function isFresh()
{ {

View File

@ -257,7 +257,7 @@ class InstalledRepository extends CompositeRepository
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function addRepository(RepositoryInterface $repository) public function addRepository(RepositoryInterface $repository)
{ {

View File

@ -490,7 +490,7 @@ class PlatformRepository extends ArrayRepository
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function addPackage(PackageInterface $package) public function addPackage(PackageInterface $package)
{ {

View File

@ -51,7 +51,7 @@ abstract class BitbucketDriver extends VcsDriver
protected $vcsType; protected $vcsType;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -72,7 +72,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -120,7 +120,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getComposerInformation($identifier) public function getComposerInformation($identifier)
{ {
@ -194,7 +194,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -221,7 +221,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -248,7 +248,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -260,7 +260,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -279,7 +279,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -323,7 +323,7 @@ abstract class BitbucketDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {

View File

@ -35,7 +35,7 @@ class FossilDriver extends VcsDriver
protected $checkoutDir; protected $checkoutDir;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -118,7 +118,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -130,7 +130,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -138,7 +138,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -146,7 +146,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -154,7 +154,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -169,7 +169,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -180,7 +180,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -199,7 +199,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -219,7 +219,7 @@ class FossilDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {

View File

@ -21,7 +21,7 @@ use Composer\IO\IOInterface;
class GitBitbucketDriver extends BitbucketDriver class GitBitbucketDriver extends BitbucketDriver
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -53,7 +53,7 @@ class GitBitbucketDriver extends BitbucketDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {
@ -71,7 +71,7 @@ class GitBitbucketDriver extends BitbucketDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
protected function setupFallbackDriver($url) protected function setupFallbackDriver($url)
{ {
@ -86,7 +86,7 @@ class GitBitbucketDriver extends BitbucketDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
protected function generateSshUrl() protected function generateSshUrl()
{ {

View File

@ -35,7 +35,7 @@ class GitDriver extends VcsDriver
protected $repoDir; protected $repoDir;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -85,7 +85,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -109,7 +109,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -117,7 +117,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -125,7 +125,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -133,7 +133,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -148,7 +148,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -161,7 +161,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -180,7 +180,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -203,7 +203,7 @@ class GitDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {

View File

@ -54,7 +54,7 @@ class GitHubDriver extends VcsDriver
protected $gitDriver = null; protected $gitDriver = null;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -86,7 +86,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -98,7 +98,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -124,7 +124,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -143,7 +143,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -153,7 +153,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getComposerInformation($identifier) public function getComposerInformation($identifier)
{ {
@ -281,7 +281,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -299,7 +299,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -314,7 +314,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -340,7 +340,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -369,7 +369,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {
@ -418,7 +418,7 @@ class GitHubDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @param bool $fetchingRepoData * @param bool $fetchingRepoData
*/ */

View File

@ -88,7 +88,7 @@ class GitLabDriver extends VcsDriver
* *
* SSH urls use https by default. Set "secure-http": false on the repository config to use http instead. * SSH urls use https by default. Set "secure-http": false on the repository config to use http instead.
* *
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -141,7 +141,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getComposerInformation($identifier) public function getComposerInformation($identifier)
{ {
@ -177,7 +177,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -209,7 +209,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -237,7 +237,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -249,7 +249,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -259,7 +259,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -271,7 +271,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -283,7 +283,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -299,7 +299,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -460,7 +460,7 @@ class GitLabDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
* *
* @param bool $fetchingRepoData * @param bool $fetchingRepoData
*/ */
@ -556,7 +556,7 @@ class GitLabDriver extends VcsDriver
* Uses the config `gitlab-domains` to see if the driver supports the url for the * Uses the config `gitlab-domains` to see if the driver supports the url for the
* repository given. * repository given.
* *
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {

View File

@ -21,7 +21,7 @@ use Composer\IO\IOInterface;
class HgBitbucketDriver extends BitbucketDriver class HgBitbucketDriver extends BitbucketDriver
{ {
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -53,7 +53,7 @@ class HgBitbucketDriver extends BitbucketDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {
@ -71,7 +71,7 @@ class HgBitbucketDriver extends BitbucketDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
protected function setupFallbackDriver($url) protected function setupFallbackDriver($url)
{ {
@ -86,7 +86,7 @@ class HgBitbucketDriver extends BitbucketDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
protected function generateSshUrl() protected function generateSshUrl()
{ {

View File

@ -34,7 +34,7 @@ class HgDriver extends VcsDriver
protected $repoDir; protected $repoDir;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -83,7 +83,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -97,7 +97,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -105,7 +105,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -113,7 +113,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -121,7 +121,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -136,7 +136,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -153,7 +153,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -175,7 +175,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -205,7 +205,7 @@ class HgDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {

View File

@ -31,7 +31,7 @@ class PerforceDriver extends VcsDriver
protected $perforce = null; protected $perforce = null;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -69,7 +69,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getFileContent($file, $identifier) public function getFileContent($file, $identifier)
{ {
@ -77,7 +77,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -85,7 +85,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -93,7 +93,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -101,7 +101,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -109,7 +109,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -117,7 +117,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -130,7 +130,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -138,7 +138,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function hasComposerFile($identifier) public function hasComposerFile($identifier)
{ {
@ -148,7 +148,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getContents($url) public function getContents($url)
{ {
@ -156,7 +156,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {
@ -168,7 +168,7 @@ class PerforceDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup() public function cleanup()
{ {

View File

@ -54,7 +54,7 @@ class SvnDriver extends VcsDriver
private $util; private $util;
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function initialize() public function initialize()
{ {
@ -90,7 +90,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getRootIdentifier() public function getRootIdentifier()
{ {
@ -98,7 +98,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getUrl() public function getUrl()
{ {
@ -106,7 +106,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getSource($identifier) public function getSource($identifier)
{ {
@ -114,7 +114,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDist($identifier) public function getDist($identifier)
{ {
@ -122,7 +122,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
protected function shouldCache($identifier) protected function shouldCache($identifier)
{ {
@ -130,7 +130,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getComposerInformation($identifier) public function getComposerInformation($identifier)
{ {
@ -191,7 +191,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getChangeDate($identifier) public function getChangeDate($identifier)
{ {
@ -217,7 +217,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getTags() public function getTags()
{ {
@ -246,7 +246,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getBranches() public function getBranches()
{ {
@ -299,7 +299,7 @@ class SvnDriver extends VcsDriver
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public static function supports(IOInterface $io, Config $config, $url, $deep = false) public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{ {

View File

@ -84,7 +84,7 @@ abstract class VcsDriver implements VcsDriverInterface
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function getComposerInformation($identifier) public function getComposerInformation($identifier)
{ {
@ -128,7 +128,7 @@ abstract class VcsDriver implements VcsDriverInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function hasComposerFile($identifier) public function hasComposerFile($identifier)
{ {
@ -172,7 +172,7 @@ abstract class VcsDriver implements VcsDriverInterface
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function cleanup() public function cleanup()
{ {

View File

@ -28,7 +28,7 @@ class WritableArrayRepository extends ArrayRepository implements WritableReposit
protected $devPackageNames = array(); protected $devPackageNames = array();
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function setDevPackageNames(array $devPackageNames) public function setDevPackageNames(array $devPackageNames)
{ {
@ -36,7 +36,7 @@ class WritableArrayRepository extends ArrayRepository implements WritableReposit
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getDevPackageNames() public function getDevPackageNames()
{ {
@ -44,21 +44,21 @@ class WritableArrayRepository extends ArrayRepository implements WritableReposit
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function write($devMode, InstallationManager $installationManager) public function write($devMode, InstallationManager $installationManager)
{ {
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function reload() public function reload()
{ {
} }
/** /**
* {@inheritDoc} * @inheritDoc
*/ */
public function getCanonicalPackages() public function getCanonicalPackages()
{ {

View File

@ -66,7 +66,7 @@ class InstallationManagerMock extends InstallationManager
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function install(InstalledRepositoryInterface $repo, InstallOperation $operation) public function install(InstalledRepositoryInterface $repo, InstallOperation $operation)
{ {
@ -78,7 +78,7 @@ class InstallationManagerMock extends InstallationManager
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function update(InstalledRepositoryInterface $repo, UpdateOperation $operation) public function update(InstalledRepositoryInterface $repo, UpdateOperation $operation)
{ {
@ -93,7 +93,7 @@ class InstallationManagerMock extends InstallationManager
} }
/** /**
* {@inheritdoc} * @inheritDoc
*/ */
public function uninstall(InstalledRepositoryInterface $repo, UninstallOperation $operation) public function uninstall(InstalledRepositoryInterface $repo, UninstallOperation $operation)
{ {