Supported Versions: PHP 5 >= 5.3.0, PHP 7, PHP 8
Creates an alias for a class
<?php class_alias(string $class, string $alias, bool $autoload = true): bool
<?php if (class_exists('PHPUnit_Framework_TestCase') === true

    && class_exists('PHPUnit\Framework\TestCase') === false

) {

    class_alias('PHPUnit_Framework_TestCase', 'PHPUnit\Framework\TestCase');

}



require_once __DIR__ . $ds . 'PHPCompatibility' . $ds . 'Tests' . $ds . 'BaseSniffTest.php';