Skip to content

Commit 665b384

Browse files
committed
Allow loading script with php 5.3
1 parent 64e85cd commit 665b384

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parallel-lint

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ of the authors and should not be interpreted as representing official policies,
3030
either expressed or implied, of the FreeBSD Project.
3131
*/
3232

33-
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50400) {
34-
fwrite(STDERR, "PHP Parallel Lint require PHP 5.4.0 or newer." . PHP_EOL);
33+
if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50300) {
34+
fwrite(STDERR, "PHP Parallel Lint requires PHP 5.3.0 or newer." . PHP_EOL);
3535
exit(254);
3636
}
3737

0 commit comments

Comments
 (0)