diff --git a/doc/articles/custom-installers.md b/doc/articles/custom-installers.md index 23be87265..02d62b836 100644 --- a/doc/articles/custom-installers.md +++ b/doc/articles/custom-installers.md @@ -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) { diff --git a/src/Composer/Command/BaseCommand.php b/src/Composer/Command/BaseCommand.php index 022d7e77b..5e98226f4 100644 --- a/src/Composer/Command/BaseCommand.php +++ b/src/Composer/Command/BaseCommand.php @@ -132,7 +132,7 @@ abstract class BaseCommand extends Command } /** - * {@inheritDoc} + * @inheritDoc * * @return void */ diff --git a/src/Composer/Command/GlobalCommand.php b/src/Composer/Command/GlobalCommand.php index b35393a90..9fd711fe5 100644 --- a/src/Composer/Command/GlobalCommand.php +++ b/src/Composer/Command/GlobalCommand.php @@ -119,7 +119,7 @@ EOT } /** - * {@inheritDoc} + * @inheritDoc */ public function isProxyCommand() { diff --git a/src/Composer/Command/HomeCommand.php b/src/Composer/Command/HomeCommand.php index 540f2bc4c..d1b66f648 100644 --- a/src/Composer/Command/HomeCommand.php +++ b/src/Composer/Command/HomeCommand.php @@ -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) { diff --git a/src/Composer/Command/InitCommand.php b/src/Composer/Command/InitCommand.php index 945571441..d2e09e0f9 100644 --- a/src/Composer/Command/InitCommand.php +++ b/src/Composer/Command/InitCommand.php @@ -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 */ diff --git a/src/Composer/Command/OutdatedCommand.php b/src/Composer/Command/OutdatedCommand.php index 584a755b7..0b38f2f0e 100644 --- a/src/Composer/Command/OutdatedCommand.php +++ b/src/Composer/Command/OutdatedCommand.php @@ -97,7 +97,7 @@ EOT } /** - * {@inheritDoc} + * @inheritDoc */ public function isProxyCommand() { diff --git a/src/Composer/Command/SuggestsCommand.php b/src/Composer/Command/SuggestsCommand.php index c6da9fc5d..345890e61 100644 --- a/src/Composer/Command/SuggestsCommand.php +++ b/src/Composer/Command/SuggestsCommand.php @@ -51,7 +51,7 @@ EOT } /** - * {@inheritDoc} + * @inheritDoc */ protected function execute(InputInterface $input, OutputInterface $output) { diff --git a/src/Composer/Config/JsonConfigSource.php b/src/Composer/Config/JsonConfigSource.php index efede264e..d9165d719 100644 --- a/src/Composer/Config/JsonConfigSource.php +++ b/src/Composer/Config/JsonConfigSource.php @@ -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) { diff --git a/src/Composer/Console/Application.php b/src/Composer/Console/Application.php index 6ca326c1c..7880d1471 100644 --- a/src/Composer/Console/Application.php +++ b/src/Composer/Console/Application.php @@ -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() { diff --git a/src/Composer/DependencyResolver/Operation/InstallOperation.php b/src/Composer/DependencyResolver/Operation/InstallOperation.php index 92b332d15..1fe8c0d36 100644 --- a/src/Composer/DependencyResolver/Operation/InstallOperation.php +++ b/src/Composer/DependencyResolver/Operation/InstallOperation.php @@ -44,7 +44,7 @@ class InstallOperation extends SolverOperation implements OperationInterface } /** - * {@inheritDoc} + * @inheritDoc */ public function show($lock) { diff --git a/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php b/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php index a1aa1219f..320fc54c0 100644 --- a/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php +++ b/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php @@ -44,7 +44,7 @@ class MarkAliasInstalledOperation extends SolverOperation implements OperationIn } /** - * {@inheritDoc} + * @inheritDoc */ public function show($lock) { diff --git a/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php b/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php index d0c193478..f447047d4 100644 --- a/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php +++ b/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php @@ -44,7 +44,7 @@ class MarkAliasUninstalledOperation extends SolverOperation implements Operation } /** - * {@inheritDoc} + * @inheritDoc */ public function show($lock) { diff --git a/src/Composer/DependencyResolver/Operation/SolverOperation.php b/src/Composer/DependencyResolver/Operation/SolverOperation.php index 7ab87fe8a..ad8855d2c 100644 --- a/src/Composer/DependencyResolver/Operation/SolverOperation.php +++ b/src/Composer/DependencyResolver/Operation/SolverOperation.php @@ -32,7 +32,7 @@ abstract class SolverOperation implements OperationInterface } /** - * {@inheritDoc} + * @inheritDoc */ public function __toString() { diff --git a/src/Composer/DependencyResolver/Operation/UninstallOperation.php b/src/Composer/DependencyResolver/Operation/UninstallOperation.php index 5a3c2dd2e..ebfe98df8 100644 --- a/src/Composer/DependencyResolver/Operation/UninstallOperation.php +++ b/src/Composer/DependencyResolver/Operation/UninstallOperation.php @@ -44,7 +44,7 @@ class UninstallOperation extends SolverOperation implements OperationInterface } /** - * {@inheritDoc} + * @inheritDoc */ public function show($lock) { diff --git a/src/Composer/DependencyResolver/Operation/UpdateOperation.php b/src/Composer/DependencyResolver/Operation/UpdateOperation.php index 6e1bb3ec9..be9a49c22 100644 --- a/src/Composer/DependencyResolver/Operation/UpdateOperation.php +++ b/src/Composer/DependencyResolver/Operation/UpdateOperation.php @@ -65,7 +65,7 @@ class UpdateOperation extends SolverOperation implements OperationInterface } /** - * {@inheritDoc} + * @inheritDoc */ public function show($lock) { diff --git a/src/Composer/Downloader/ArchiveDownloader.php b/src/Composer/Downloader/ArchiveDownloader.php index 3fe66a693..570de63d8 100644 --- a/src/Composer/Downloader/ArchiveDownloader.php +++ b/src/Composer/Downloader/ArchiveDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/FileDownloader.php b/src/Composer/Downloader/FileDownloader.php index 6acc697e3..88a8da385 100644 --- a/src/Composer/Downloader/FileDownloader.php +++ b/src/Composer/Downloader/FileDownloader.php @@ -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) diff --git a/src/Composer/Downloader/FossilDownloader.php b/src/Composer/Downloader/FossilDownloader.php index d96c4f4ff..ccef029f6 100644 --- a/src/Composer/Downloader/FossilDownloader.php +++ b/src/Composer/Downloader/FossilDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/GitDownloader.php b/src/Composer/Downloader/GitDownloader.php index cdb222c35..3a9e94427 100644 --- a/src/Composer/Downloader/GitDownloader.php +++ b/src/Composer/Downloader/GitDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/HgDownloader.php b/src/Composer/Downloader/HgDownloader.php index f68ed8c8f..45b0e2874 100644 --- a/src/Composer/Downloader/HgDownloader.php +++ b/src/Composer/Downloader/HgDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/PathDownloader.php b/src/Composer/Downloader/PathDownloader.php index 3c04a0767..ffaed5515 100644 --- a/src/Composer/Downloader/PathDownloader.php +++ b/src/Composer/Downloader/PathDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/PerforceDownloader.php b/src/Composer/Downloader/PerforceDownloader.php index 8a97dea53..0c0c5d74d 100644 --- a/src/Composer/Downloader/PerforceDownloader.php +++ b/src/Composer/Downloader/PerforceDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/PharDownloader.php b/src/Composer/Downloader/PharDownloader.php index 89ef4363f..2bfd70a72 100644 --- a/src/Composer/Downloader/PharDownloader.php +++ b/src/Composer/Downloader/PharDownloader.php @@ -22,7 +22,7 @@ use Composer\Package\PackageInterface; class PharDownloader extends ArchiveDownloader { /** - * {@inheritDoc} + * @inheritDoc */ protected function extract(PackageInterface $package, $file, $path) { diff --git a/src/Composer/Downloader/SvnDownloader.php b/src/Composer/Downloader/SvnDownloader.php index 948e63aad..fa5596094 100644 --- a/src/Composer/Downloader/SvnDownloader.php +++ b/src/Composer/Downloader/SvnDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/TarDownloader.php b/src/Composer/Downloader/TarDownloader.php index 65346030e..da4c98289 100644 --- a/src/Composer/Downloader/TarDownloader.php +++ b/src/Composer/Downloader/TarDownloader.php @@ -22,7 +22,7 @@ use Composer\Package\PackageInterface; class TarDownloader extends ArchiveDownloader { /** - * {@inheritDoc} + * @inheritDoc */ protected function extract(PackageInterface $package, $file, $path) { diff --git a/src/Composer/Downloader/VcsDownloader.php b/src/Composer/Downloader/VcsDownloader.php index d4e637a46..eaea3d9da 100644 --- a/src/Composer/Downloader/VcsDownloader.php +++ b/src/Composer/Downloader/VcsDownloader.php @@ -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) { diff --git a/src/Composer/Downloader/ZipDownloader.php b/src/Composer/Downloader/ZipDownloader.php index 6055f8745..30fa1c9da 100644 --- a/src/Composer/Downloader/ZipDownloader.php +++ b/src/Composer/Downloader/ZipDownloader.php @@ -36,7 +36,7 @@ class ZipDownloader extends ArchiveDownloader private $zipArchiveObject; /** - * {@inheritDoc} + * @inheritDoc */ public function download(PackageInterface $package, $path, PackageInterface $prevPackage = null, $output = true) { diff --git a/src/Composer/IO/BaseIO.php b/src/Composer/IO/BaseIO.php index 5fbb5f9d1..b1c11a1cb 100644 --- a/src/Composer/IO/BaseIO.php +++ b/src/Composer/IO/BaseIO.php @@ -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()) { diff --git a/src/Composer/IO/ConsoleIO.php b/src/Composer/IO/ConsoleIO.php index 540f5412d..9c8b467fe 100644 --- a/src/Composer/IO/ConsoleIO.php +++ b/src/Composer/IO/ConsoleIO.php @@ -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) { diff --git a/src/Composer/IO/NullIO.php b/src/Composer/IO/NullIO.php index 9dc9d3a0f..89c574e43 100644 --- a/src/Composer/IO/NullIO.php +++ b/src/Composer/IO/NullIO.php @@ -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) { diff --git a/src/Composer/Installer/LibraryInstaller.php b/src/Composer/Installer/LibraryInstaller.php index 73d6481c2..1d8c743bb 100644 --- a/src/Composer/Installer/LibraryInstaller.php +++ b/src/Composer/Installer/LibraryInstaller.php @@ -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) { diff --git a/src/Composer/Installer/MetapackageInstaller.php b/src/Composer/Installer/MetapackageInstaller.php index 936f72536..ccc71c3fa 100644 --- a/src/Composer/Installer/MetapackageInstaller.php +++ b/src/Composer/Installer/MetapackageInstaller.php @@ -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) { diff --git a/src/Composer/Installer/NoopInstaller.php b/src/Composer/Installer/NoopInstaller.php index 1342db4ac..d1aa1fa18 100644 --- a/src/Composer/Installer/NoopInstaller.php +++ b/src/Composer/Installer/NoopInstaller.php @@ -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) { diff --git a/src/Composer/Installer/PluginInstaller.php b/src/Composer/Installer/PluginInstaller.php index f760be6a9..3fc09638b 100644 --- a/src/Composer/Installer/PluginInstaller.php +++ b/src/Composer/Installer/PluginInstaller.php @@ -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) { diff --git a/src/Composer/Installer/ProjectInstaller.php b/src/Composer/Installer/ProjectInstaller.php index 678da7f13..42bb77aca 100644 --- a/src/Composer/Installer/ProjectInstaller.php +++ b/src/Composer/Installer/ProjectInstaller.php @@ -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) { diff --git a/src/Composer/Package/AliasPackage.php b/src/Composer/Package/AliasPackage.php index 0cdf64798..4dd2bd9aa 100644 --- a/src/Composer/Package/AliasPackage.php +++ b/src/Composer/Package/AliasPackage.php @@ -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 */ public function getConflicts() @@ -130,7 +130,7 @@ class AliasPackage extends BasePackage } /** - * {@inheritDoc} + * @inheritDoc * @return array */ public function getProvides() @@ -139,7 +139,7 @@ class AliasPackage extends BasePackage } /** - * {@inheritDoc} + * @inheritDoc * @return array */ public function getReplaces() @@ -148,7 +148,7 @@ class AliasPackage extends BasePackage } /** - * {@inheritDoc} + * @inheritDoc */ public function getDevRequires() { diff --git a/src/Composer/Package/Archiver/PharArchiver.php b/src/Composer/Package/Archiver/PharArchiver.php index 2767642ff..582e4537e 100644 --- a/src/Composer/Package/Archiver/PharArchiver.php +++ b/src/Composer/Package/Archiver/PharArchiver.php @@ -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) { diff --git a/src/Composer/Package/Archiver/ZipArchiver.php b/src/Composer/Package/Archiver/ZipArchiver.php index 20d279086..46d610dd9 100644 --- a/src/Composer/Package/Archiver/ZipArchiver.php +++ b/src/Composer/Package/Archiver/ZipArchiver.php @@ -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) { diff --git a/src/Composer/Package/BasePackage.php b/src/Composer/Package/BasePackage.php index b61c4de7e..27a1edb48 100644 --- a/src/Composer/Package/BasePackage.php +++ b/src/Composer/Package/BasePackage.php @@ -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) { diff --git a/src/Composer/Package/CompletePackage.php b/src/Composer/Package/CompletePackage.php index b125fc142..5a6ec4cb2 100644 --- a/src/Composer/Package/CompletePackage.php +++ b/src/Composer/Package/CompletePackage.php @@ -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() { diff --git a/src/Composer/Package/Package.php b/src/Composer/Package/Package.php index 2abb024f1..cd447fc3f 100644 --- a/src/Composer/Package/Package.php +++ b/src/Composer/Package/Package.php @@ -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 */ public function getConflicts() @@ -501,7 +501,7 @@ class Package extends BasePackage } /** - * {@inheritDoc} + * @inheritDoc * @return array */ public function getProvides() @@ -522,7 +522,7 @@ class Package extends BasePackage } /** - * {@inheritDoc} + * @inheritDoc * @return array */ 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) { diff --git a/src/Composer/Package/RootAliasPackage.php b/src/Composer/Package/RootAliasPackage.php index 78139eb02..4817653dc 100644 --- a/src/Composer/Package/RootAliasPackage.php +++ b/src/Composer/Package/RootAliasPackage.php @@ -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) { diff --git a/src/Composer/Package/RootPackage.php b/src/Composer/Package/RootPackage.php index 25f062056..070e7b6c9 100644 --- a/src/Composer/Package/RootPackage.php +++ b/src/Composer/Package/RootPackage.php @@ -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() { diff --git a/src/Composer/Package/Version/VersionParser.php b/src/Composer/Package/Version/VersionParser.php index 41a2447bc..c848522e2 100644 --- a/src/Composer/Package/Version/VersionParser.php +++ b/src/Composer/Package/Version/VersionParser.php @@ -25,7 +25,7 @@ class VersionParser extends SemverVersionParser private static $constraints = array(); /** - * {@inheritDoc} + * @inheritDoc */ public function parseConstraints($constraints) { diff --git a/src/Composer/Repository/ArrayRepository.php b/src/Composer/Repository/ArrayRepository.php index 02761f6a3..dc0a56963 100644 --- a/src/Composer/Repository/ArrayRepository.php +++ b/src/Composer/Repository/ArrayRepository.php @@ -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() { diff --git a/src/Composer/Repository/ComposerRepository.php b/src/Composer/Repository/ComposerRepository.php index 3fdab432b..696e60c1b 100644 --- a/src/Composer/Repository/ComposerRepository.php +++ b/src/Composer/Repository/ComposerRepository.php @@ -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() { diff --git a/src/Composer/Repository/CompositeRepository.php b/src/Composer/Repository/CompositeRepository.php index 7f3169fa6..d6cfc46e7 100644 --- a/src/Composer/Repository/CompositeRepository.php +++ b/src/Composer/Repository/CompositeRepository.php @@ -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() diff --git a/src/Composer/Repository/FilterRepository.php b/src/Composer/Repository/FilterRepository.php index d29a71f3e..429659129 100644 --- a/src/Composer/Repository/FilterRepository.php +++ b/src/Composer/Repository/FilterRepository.php @@ -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() diff --git a/src/Composer/Repository/InstalledArrayRepository.php b/src/Composer/Repository/InstalledArrayRepository.php index e8a5f8194..40673e7f7 100644 --- a/src/Composer/Repository/InstalledArrayRepository.php +++ b/src/Composer/Repository/InstalledArrayRepository.php @@ -27,7 +27,7 @@ class InstalledArrayRepository extends WritableArrayRepository implements Instal } /** - * {@inheritDoc} + * @inheritDoc */ public function isFresh() { diff --git a/src/Composer/Repository/InstalledFilesystemRepository.php b/src/Composer/Repository/InstalledFilesystemRepository.php index f526f31c2..ac8bef79a 100644 --- a/src/Composer/Repository/InstalledFilesystemRepository.php +++ b/src/Composer/Repository/InstalledFilesystemRepository.php @@ -25,7 +25,7 @@ class InstalledFilesystemRepository extends FilesystemRepository implements Inst } /** - * {@inheritDoc} + * @inheritDoc */ public function isFresh() { diff --git a/src/Composer/Repository/InstalledRepository.php b/src/Composer/Repository/InstalledRepository.php index 4c23bf8dc..db0967ba7 100644 --- a/src/Composer/Repository/InstalledRepository.php +++ b/src/Composer/Repository/InstalledRepository.php @@ -257,7 +257,7 @@ class InstalledRepository extends CompositeRepository } /** - * {@inheritDoc} + * @inheritDoc */ public function addRepository(RepositoryInterface $repository) { diff --git a/src/Composer/Repository/PlatformRepository.php b/src/Composer/Repository/PlatformRepository.php index 4d5c14e36..d34f557d5 100644 --- a/src/Composer/Repository/PlatformRepository.php +++ b/src/Composer/Repository/PlatformRepository.php @@ -490,7 +490,7 @@ class PlatformRepository extends ArrayRepository } /** - * {@inheritDoc} + * @inheritDoc */ public function addPackage(PackageInterface $package) { diff --git a/src/Composer/Repository/Vcs/BitbucketDriver.php b/src/Composer/Repository/Vcs/BitbucketDriver.php index cf3175d8e..596d7437b 100644 --- a/src/Composer/Repository/Vcs/BitbucketDriver.php +++ b/src/Composer/Repository/Vcs/BitbucketDriver.php @@ -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() { diff --git a/src/Composer/Repository/Vcs/FossilDriver.php b/src/Composer/Repository/Vcs/FossilDriver.php index eca405ac8..e78c399a8 100644 --- a/src/Composer/Repository/Vcs/FossilDriver.php +++ b/src/Composer/Repository/Vcs/FossilDriver.php @@ -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) { diff --git a/src/Composer/Repository/Vcs/GitBitbucketDriver.php b/src/Composer/Repository/Vcs/GitBitbucketDriver.php index ab59c23e1..df80ea25c 100644 --- a/src/Composer/Repository/Vcs/GitBitbucketDriver.php +++ b/src/Composer/Repository/Vcs/GitBitbucketDriver.php @@ -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() { diff --git a/src/Composer/Repository/Vcs/GitDriver.php b/src/Composer/Repository/Vcs/GitDriver.php index 735db2d70..dd0bab0f5 100644 --- a/src/Composer/Repository/Vcs/GitDriver.php +++ b/src/Composer/Repository/Vcs/GitDriver.php @@ -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) { diff --git a/src/Composer/Repository/Vcs/GitHubDriver.php b/src/Composer/Repository/Vcs/GitHubDriver.php index dadf1c781..f186bb6f5 100644 --- a/src/Composer/Repository/Vcs/GitHubDriver.php +++ b/src/Composer/Repository/Vcs/GitHubDriver.php @@ -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 */ diff --git a/src/Composer/Repository/Vcs/GitLabDriver.php b/src/Composer/Repository/Vcs/GitLabDriver.php index f3f47e768..cfecee898 100644 --- a/src/Composer/Repository/Vcs/GitLabDriver.php +++ b/src/Composer/Repository/Vcs/GitLabDriver.php @@ -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) { diff --git a/src/Composer/Repository/Vcs/HgBitbucketDriver.php b/src/Composer/Repository/Vcs/HgBitbucketDriver.php index 71505cf52..bd6734690 100644 --- a/src/Composer/Repository/Vcs/HgBitbucketDriver.php +++ b/src/Composer/Repository/Vcs/HgBitbucketDriver.php @@ -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() { diff --git a/src/Composer/Repository/Vcs/HgDriver.php b/src/Composer/Repository/Vcs/HgDriver.php index 560ecc972..b1f63afd4 100644 --- a/src/Composer/Repository/Vcs/HgDriver.php +++ b/src/Composer/Repository/Vcs/HgDriver.php @@ -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) { diff --git a/src/Composer/Repository/Vcs/PerforceDriver.php b/src/Composer/Repository/Vcs/PerforceDriver.php index 1f437dbe3..3a8c99758 100644 --- a/src/Composer/Repository/Vcs/PerforceDriver.php +++ b/src/Composer/Repository/Vcs/PerforceDriver.php @@ -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() { diff --git a/src/Composer/Repository/Vcs/SvnDriver.php b/src/Composer/Repository/Vcs/SvnDriver.php index 9ea596115..f375c900a 100644 --- a/src/Composer/Repository/Vcs/SvnDriver.php +++ b/src/Composer/Repository/Vcs/SvnDriver.php @@ -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) { diff --git a/src/Composer/Repository/Vcs/VcsDriver.php b/src/Composer/Repository/Vcs/VcsDriver.php index a9d025e05..060e20a4b 100644 --- a/src/Composer/Repository/Vcs/VcsDriver.php +++ b/src/Composer/Repository/Vcs/VcsDriver.php @@ -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() { diff --git a/src/Composer/Repository/WritableArrayRepository.php b/src/Composer/Repository/WritableArrayRepository.php index de253112d..2cf2f576a 100644 --- a/src/Composer/Repository/WritableArrayRepository.php +++ b/src/Composer/Repository/WritableArrayRepository.php @@ -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() { diff --git a/tests/Composer/Test/Mock/InstallationManagerMock.php b/tests/Composer/Test/Mock/InstallationManagerMock.php index c1db581b0..33853e357 100644 --- a/tests/Composer/Test/Mock/InstallationManagerMock.php +++ b/tests/Composer/Test/Mock/InstallationManagerMock.php @@ -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) {