Fix @inheritDoc annotations

main
Jordi Boggiano 3 years ago
parent 2992e8651a
commit c65d09dff7
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

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

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

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

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

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

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

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

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

@ -117,7 +117,7 @@ class Application extends BaseApplication
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -522,7 +522,7 @@ class Application extends BaseApplication
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getLongVersion()
{
@ -540,7 +540,7 @@ class Application extends BaseApplication
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getDefaultInputDefinition()
{

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

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

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

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

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

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

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

@ -93,7 +93,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getInstallationSource()
{
@ -101,7 +101,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*
* @param bool $output
*/
@ -286,7 +286,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -325,7 +325,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*
* @param bool $output
*/
@ -398,7 +398,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function update(PackageInterface $initial, PackageInterface $target, $path)
{
@ -419,7 +419,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*
* @param bool $output
*/
@ -483,7 +483,7 @@ class FileDownloader implements DownloaderInterface, ChangeReportInterface
}
/**
* {@inheritDoc}
* @inheritDoc
* @throws \RuntimeException
*/
public function getLocalChanges(PackageInterface $package, $targetDir)

@ -21,7 +21,7 @@ use Composer\Util\ProcessExecutor;
class FossilDownloader extends VcsDownloader
{
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -57,7 +57,7 @@ class FossilDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -94,7 +94,7 @@ class FossilDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getCommitLogs($fromReference, $toReference, $path)
{
@ -118,7 +118,7 @@ class FossilDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function hasMetadataRepository($path)
{

@ -55,7 +55,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -138,7 +138,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -318,7 +318,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function cleanChanges(PackageInterface $package, $path, $update)
{
@ -405,7 +405,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function reapplyChanges($path)
{
@ -522,7 +522,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getCommitLogs($fromReference, $toReference, $path)
{
@ -618,7 +618,7 @@ class GitDownloader extends VcsDownloader implements DvcsDownloaderInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function hasMetadataRepository($path)
{

@ -22,7 +22,7 @@ use Composer\Util\Hg as HgUtils;
class HgDownloader extends VcsDownloader
{
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -56,7 +56,7 @@ class HgDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -93,7 +93,7 @@ class HgDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getCommitLogs($fromReference, $toReference, $path)
{
@ -107,7 +107,7 @@ class HgDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function hasMetadataRepository($path)
{

@ -36,7 +36,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
const STRATEGY_MIRROR = 20;
/**
* {@inheritdoc}
* @inheritDoc
*/
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)
{
@ -158,7 +158,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -221,7 +221,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getInstallOperationAppendix(PackageInterface $package, $path)
{

@ -25,7 +25,7 @@ class PerforceDownloader extends VcsDownloader
protected $perforce;
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -98,7 +98,7 @@ class PerforceDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -116,7 +116,7 @@ class PerforceDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getCommitLogs($fromReference, $toReference, $path)
{
@ -132,7 +132,7 @@ class PerforceDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function hasMetadataRepository($path)
{

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

@ -28,7 +28,7 @@ class SvnDownloader extends VcsDownloader
protected $cacheCredentials = true;
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -64,7 +64,7 @@ class SvnDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -127,7 +127,7 @@ class SvnDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function cleanChanges(PackageInterface $package, $path, $update)
{
@ -188,7 +188,7 @@ class SvnDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function getCommitLogs($fromReference, $toReference, $path)
{
@ -245,7 +245,7 @@ class SvnDownloader extends VcsDownloader
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function hasMetadataRepository($path)
{

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

@ -50,7 +50,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getInstallationSource()
{
@ -58,7 +58,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -108,7 +108,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -156,7 +156,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -236,7 +236,7 @@ abstract class VcsDownloader implements DownloaderInterface, ChangeReportInterfa
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getVcsReference(PackageInterface $package, $path)
{

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

@ -22,7 +22,7 @@ abstract class BaseIO implements IOInterface
protected $authentications = array();
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getAuthentications()
{
@ -38,7 +38,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function hasAuthentication($repositoryName)
{
@ -46,7 +46,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getAuthentication($repositoryName)
{
@ -58,7 +58,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -74,7 +74,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -159,7 +159,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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())
{
@ -175,7 +175,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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())
{
@ -191,7 +191,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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())
{
@ -207,7 +207,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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())
{
@ -223,7 +223,7 @@ abstract class BaseIO implements IOInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function log($level, $message, array $context = array())
{

@ -77,7 +77,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isInteractive()
{
@ -85,7 +85,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isDecorated()
{
@ -93,7 +93,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isVerbose()
{
@ -101,7 +101,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isVeryVerbose()
{
@ -109,7 +109,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isDebug()
{
@ -117,7 +117,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -133,7 +133,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -192,7 +192,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -264,7 +264,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function ask($question, $default = null)
{
@ -276,7 +276,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -302,7 +302,7 @@ class ConsoleIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{

@ -20,7 +20,7 @@ namespace Composer\IO;
class NullIO extends BaseIO
{
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isInteractive()
{
@ -28,7 +28,7 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isVerbose()
{
@ -36,7 +36,7 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isVeryVerbose()
{
@ -44,7 +44,7 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isDebug()
{
@ -52,7 +52,7 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function isDecorated()
{
@ -60,35 +60,35 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function write($messages, $newline = true, $verbosity = self::NORMAL)
{
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function writeError($messages, $newline = true, $verbosity = self::NORMAL)
{
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function overwrite($messages, $newline = true, $size = 80, $verbosity = self::NORMAL)
{
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function overwriteError($messages, $newline = true, $size = 80, $verbosity = self::NORMAL)
{
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function ask($question, $default = null)
{
@ -96,7 +96,7 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -112,7 +112,7 @@ class NullIO extends BaseIO
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{

@ -67,7 +67,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function supports($packageType)
{
@ -75,7 +75,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -104,7 +104,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -126,7 +126,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -184,7 +184,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{
@ -215,7 +215,7 @@ class LibraryInstaller implements InstallerInterface, BinaryPresenceInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getInstallPath(PackageInterface $package)
{

@ -35,7 +35,7 @@ class MetapackageInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function supports($packageType)
{
@ -43,7 +43,7 @@ class MetapackageInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -60,7 +60,7 @@ class MetapackageInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -78,7 +78,7 @@ class MetapackageInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -107,7 +107,7 @@ class MetapackageInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{
@ -123,7 +123,7 @@ class MetapackageInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getInstallPath(PackageInterface $package)
{

@ -25,7 +25,7 @@ use Composer\Package\PackageInterface;
class NoopInstaller implements InstallerInterface
{
/**
* {@inheritDoc}
* @inheritDoc
*/
public function supports($packageType)
{
@ -33,7 +33,7 @@ class NoopInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -49,7 +49,7 @@ class NoopInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -65,7 +65,7 @@ class NoopInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -94,7 +94,7 @@ class NoopInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{
@ -107,7 +107,7 @@ class NoopInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getInstallPath(PackageInterface $package)
{

@ -40,7 +40,7 @@ class PluginInstaller extends LibraryInstaller
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function supports($packageType)
{
@ -48,7 +48,7 @@ class PluginInstaller extends LibraryInstaller
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -84,7 +84,7 @@ class PluginInstaller extends LibraryInstaller
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target)
{

@ -54,7 +54,7 @@ class ProjectInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -78,7 +78,7 @@ class ProjectInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -94,7 +94,7 @@ class ProjectInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -110,7 +110,7 @@ class ProjectInstaller implements InstallerInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package)
{

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

@ -34,7 +34,7 @@ class PharArchiver implements ArchiverInterface
);
/**
* {@inheritdoc}
* @inheritDoc
*/
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)
{

@ -26,7 +26,7 @@ class ZipArchiver implements ArchiverInterface
);
/**
* {@inheritdoc}
* @inheritDoc
*/
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)
{

@ -76,7 +76,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getName()
{
@ -84,7 +84,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getPrettyName()
{
@ -92,7 +92,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getNames($provides = true)
{
@ -114,7 +114,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function setId($id)
{
@ -122,7 +122,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getId()
{
@ -130,7 +130,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function setRepository(RepositoryInterface $repository)
{
@ -141,7 +141,7 @@ abstract class BasePackage implements PackageInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{

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

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

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

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

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

@ -54,7 +54,7 @@ class ArrayRepository implements RepositoryInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -118,7 +118,7 @@ class ArrayRepository implements RepositoryInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function findPackages($name, $constraint = null)
{
@ -143,7 +143,7 @@ class ArrayRepository implements RepositoryInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function search($query, $mode = 0, $type = null)
{
@ -173,7 +173,7 @@ class ArrayRepository implements RepositoryInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function hasPackage(PackageInterface $package)
{
@ -214,7 +214,7 @@ class ArrayRepository implements RepositoryInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getProviders($packageName)
{
@ -282,7 +282,7 @@ class ArrayRepository implements RepositoryInterface
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getPackages()
{

@ -188,7 +188,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function findPackage($name, $constraint)
{
@ -228,7 +228,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -730,7 +730,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
}
/**
* {@inheritDoc}
* @inheritDoc
*/
protected function initialize()
{

@ -57,7 +57,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function hasPackage(PackageInterface $package)
{
@ -72,7 +72,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function findPackage($name, $constraint)
{
@ -88,7 +88,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
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())
{
@ -122,7 +122,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function search($query, $mode = 0, $type = null)
{
@ -136,7 +136,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getPackages()
{
@ -150,7 +150,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getProviders($packageName)
{
@ -176,7 +176,7 @@ class CompositeRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
#[\ReturnTypeWillChange]
public function count()

@ -81,7 +81,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function hasPackage(PackageInterface $package)
{
@ -89,7 +89,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function findPackage($name, $constraint)
{
@ -101,7 +101,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
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())
{
@ -136,7 +136,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function search($query, $mode = 0, $type = null)
{
@ -152,7 +152,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getPackages()
{
@ -167,7 +167,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getProviders($packageName)
{
@ -182,7 +182,7 @@ class FilterRepository implements RepositoryInterface
}
/**
* {@inheritdoc}
* @inheritDoc
*/
#[\ReturnTypeWillChange]
public function count()

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

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

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

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

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

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

@ -21,7 +21,7 @@ use Composer\IO\IOInterface;
class GitBitbucketDriver extends BitbucketDriver
{
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getRootIdentifier()
{
@ -53,7 +53,7 @@ class GitBitbucketDriver extends BitbucketDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -86,7 +86,7 @@ class GitBitbucketDriver extends BitbucketDriver
}
/**
* {@inheritdoc}
* @inheritDoc
*/
protected function generateSshUrl()
{

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

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

@ -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.
*
* {@inheritDoc}
* @inheritDoc
*/
public function initialize()
{
@ -141,7 +141,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getComposerInformation($identifier)
{
@ -177,7 +177,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getFileContent($file, $identifier)
{
@ -209,7 +209,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getChangeDate($identifier)
{
@ -237,7 +237,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getUrl()
{
@ -249,7 +249,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getDist($identifier)
{
@ -259,7 +259,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getSource($identifier)
{
@ -271,7 +271,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getRootIdentifier()
{
@ -283,7 +283,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getBranches()
{
@ -299,7 +299,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getTags()
{
@ -460,7 +460,7 @@ class GitLabDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*
* @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
* repository given.
*
* {@inheritDoc}
* @inheritDoc
*/
public static function supports(IOInterface $io, Config $config, $url, $deep = false)
{

@ -21,7 +21,7 @@ use Composer\IO\IOInterface;
class HgBitbucketDriver extends BitbucketDriver
{
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getRootIdentifier()
{
@ -53,7 +53,7 @@ class HgBitbucketDriver extends BitbucketDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -86,7 +86,7 @@ class HgBitbucketDriver extends BitbucketDriver
}
/**
* {@inheritdoc}
* @inheritDoc
*/
protected function generateSshUrl()
{

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

@ -31,7 +31,7 @@ class PerforceDriver extends VcsDriver
protected $perforce = null;
/**
* {@inheritDoc}
* @inheritDoc
*/
public function initialize()
{
@ -69,7 +69,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getFileContent($file, $identifier)
{
@ -77,7 +77,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritdoc}
* @inheritDoc
*/
public function getChangeDate($identifier)
{
@ -85,7 +85,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getRootIdentifier()
{
@ -93,7 +93,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getBranches()
{
@ -101,7 +101,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getTags()
{
@ -109,7 +109,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getDist($identifier)
{
@ -117,7 +117,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getSource($identifier)
{
@ -130,7 +130,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function getUrl()
{
@ -138,7 +138,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function hasComposerFile($identifier)
{
@ -148,7 +148,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
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)
{
@ -168,7 +168,7 @@ class PerforceDriver extends VcsDriver
}
/**
* {@inheritDoc}
* @inheritDoc
*/
public function cleanup()
{

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

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

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

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

Loading…
Cancel
Save