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

Breadcrumb

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

function AtLeastVersionCommand::execute

Overrides Command::execute

File

vendor/phpunit/phpunit/src/TextUI/Command/Commands/AtLeastVersionCommand.php, line 29

Class

AtLeastVersionCommand
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit

Namespace

PHPUnit\TextUI\Command

Code

public function execute() : Result {
    if (version_compare(Version::id(), $this->version, '>=')) {
        return Result::from();
    }
    return Result::from('', Result::FAILURE);
}
RSS feed
Powered by Drupal