class VersionCheckCommand
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
@internal This class is not covered by the backward compatibility promise for PHPUnit
Hierarchy
- class \PHPUnit\TextUI\Command\VersionCheckCommand implements \PHPUnit\TextUI\Command\Command
Expanded class hierarchy of VersionCheckCommand
1 file declares its use of VersionCheckCommand
- Application.php in vendor/
phpunit/ phpunit/ src/ TextUI/ Application.php
File
-
vendor/
phpunit/ phpunit/ src/ TextUI/ Command/ Commands/ VersionCheckCommand.php, line 23
Namespace
PHPUnit\TextUI\CommandView source
final class VersionCheckCommand implements Command {
private readonly Downloader $downloader;
private readonly int $majorVersionNumber;
private readonly string $versionId;
public function __construct(Downloader $downloader, int $majorVersionNumber, string $versionId) {
$this->downloader = $downloader;
$this->majorVersionNumber = $majorVersionNumber;
$this->versionId = $versionId;
}
public function execute() : Result {
$latestVersion = $this->downloader
->download('https://phar.phpunit.de/latest-version-of/phpunit');
assert($latestVersion !== false);
$latestCompatibleVersion = $this->downloader
->download('https://phar.phpunit.de/latest-version-of/phpunit-' . $this->majorVersionNumber);
assert($latestCompatibleVersion !== false);
$notLatest = version_compare($latestVersion, $this->versionId, '>');
$notLatestCompatible = version_compare($latestCompatibleVersion, $this->versionId, '>');
if (!$notLatest && !$notLatestCompatible) {
return Result::from('You are using the latest version of PHPUnit.' . PHP_EOL);
}
$buffer = 'You are not using the latest version of PHPUnit.' . PHP_EOL;
if ($notLatestCompatible) {
$buffer .= sprintf('The latest version compatible with PHPUnit %s is PHPUnit %s.' . PHP_EOL, $this->versionId, $latestCompatibleVersion);
}
if ($notLatest) {
$buffer .= sprintf('The latest version is PHPUnit %s.' . PHP_EOL, $latestVersion);
}
return Result::from($buffer);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
VersionCheckCommand::$downloader | private | property | ||
VersionCheckCommand::$majorVersionNumber | private | property | ||
VersionCheckCommand::$versionId | private | property | ||
VersionCheckCommand::execute | public | function | Overrides Command::execute | |
VersionCheckCommand::__construct | public | function |