You are here

RunnerVersion.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/tests/Drupal/TestTools/PhpUnitCompatibility/RunnerVersion.php

File

core/tests/Drupal/TestTools/PhpUnitCompatibility/RunnerVersion.php
View source
<?php

namespace Drupal\TestTools\PhpUnitCompatibility;

use PHPUnit\Runner\Version;

/**
 * Helper class to determine information about running PHPUnit version.
 *
 * This class contains static methods only and is not meant to be instantiated.
 */
final class RunnerVersion {

  /**
   * This class should not be instantiated.
   */
  private function __construct() {
  }

  /**
   * Returns the major version of the PHPUnit runner being used.
   *
   * @return int
   *   The major version of the PHPUnit runner being used.
   */
  public static function getMajor() {
    return (int) explode('.', Version::id())[0];
  }

}

Classes

Namesort descending Description
RunnerVersion Helper class to determine information about running PHPUnit version.