Improve problem description for wrong PHP version

This commit is contained in:
Franz Liedke 2019-02-01 13:00:25 +01:00
parent 968152b740
commit 4d1411e2a8
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -27,7 +27,7 @@ class PhpVersion implements PrerequisiteInterface
if (version_compare(PHP_VERSION, $this->minVersion, '<')) {
return collect()->push([
'message' => "PHP $this->minVersion is required.",
'detail' => 'You are running version '.PHP_VERSION.'. Talk to your hosting provider about upgrading to the latest PHP version.',
'detail' => 'You are running version '.PHP_VERSION.'. You might want to talk to your system administrator about upgrading to the latest PHP version.',
]);
}