Fix minPHPVersion in spark

Fixes #4213
This commit is contained in:
Abdul Malik Ikhsan 2021-02-02 19:15:33 +07:00 committed by GitHub
parent 036727897c
commit 53e300dab0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
spark
View File

@ -2,7 +2,7 @@
<?php
// Valid PHP Version?
$minPHPVersion = '7.2';
$minPHPVersion = '7.3';
if (version_compare(PHP_VERSION, $minPHPVersion, '<'))
{
die("Your PHP version must be {$minPHPVersion} or higher to run CodeIgniter. Current version: " . PHP_VERSION);