27 lines
438 B
PHP
27 lines
438 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Tests;
|
|
|
|
use function version_compare;
|
|
|
|
use const PHP_VERSION;
|
|
|
|
/**
|
|
* @coversNothing
|
|
*/
|
|
class EnvironmentTest extends AbstractTestCase
|
|
{
|
|
/**
|
|
* Tests PHP version
|
|
*/
|
|
public function testPhpVersion(): void
|
|
{
|
|
$this->assertTrue(
|
|
version_compare('7.2.5', PHP_VERSION, '<='),
|
|
'phpMyAdmin requires PHP 7.2.5 or above'
|
|
);
|
|
}
|
|
}
|