aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lint_test.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-01-02 20:34:45 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-05-09 21:58:29 +0200
commit978d883abb4f62f1b644bdab760fedbabdb61690 (patch)
tree0c1e4b29ce2255e4bbbc71e19c9024354f0c6657 /tests/lint_test.php
parentd0e3c2c1369f9d32e778316fb9a4df68b7442ec1 (diff)
downloadforums-978d883abb4f62f1b644bdab760fedbabdb61690.tar
forums-978d883abb4f62f1b644bdab760fedbabdb61690.tar.gz
forums-978d883abb4f62f1b644bdab760fedbabdb61690.tar.bz2
forums-978d883abb4f62f1b644bdab760fedbabdb61690.tar.xz
forums-978d883abb4f62f1b644bdab760fedbabdb61690.zip
[ticket/14948] Remove checks for unsupported PHP versions
PHPBB3-14948
Diffstat (limited to 'tests/lint_test.php')
-rw-r--r--tests/lint_test.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/lint_test.php b/tests/lint_test.php
index 8ab31f976c..8356389acf 100644
--- a/tests/lint_test.php
+++ b/tests/lint_test.php
@@ -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;