* Fix php version error of sqlparser.

This commit is contained in:
zhouxin
2024-04-22 13:57:22 +08:00
parent 56bc511238
commit 88328f86b2
+1 -1
View File
@@ -4,7 +4,7 @@
$issues = array();
if (!(PHP_VERSION_ID >= 70200)) {
if (!(PHP_VERSION_ID >= 50400)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.0". You are running ' . PHP_VERSION . '.';
}