Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. VersionCheckCommand.php

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\Command
View 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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal