1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/14948] Remove checks for unsupported PHP versions

PHPBB3-14948
This commit is contained in:
Marc Alexander
2019-01-02 20:34:45 +01:00
parent 56669ac280
commit 5a0e426b38
4 changed files with 6 additions and 23 deletions

View File

@@ -45,11 +45,6 @@ class phpbb_lint_test extends phpbb_test_case
*/
public function test_lint($path)
{
if (version_compare(PHP_VERSION, '5.3.0', '<'))
{
$this->markTestSkipped('phpBB uses PHP 5.3 syntax in some files, linting on PHP < 5.3 will fail');
}
$cmd = sprintf('(%s -l %s) 2>&1', self::$php_binary, escapeshellarg($path));
$output = array();
$status = 1;