From fd7610ffeedcc829665f34a22d29428f3d89ad64 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Fri, 1 Feb 2019 13:00:25 +0100 Subject: [PATCH] Improve problem description for wrong PHP version --- framework/core/src/Install/Prerequisite/PhpVersion.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Install/Prerequisite/PhpVersion.php b/framework/core/src/Install/Prerequisite/PhpVersion.php index 59d21266f..fca994735 100644 --- a/framework/core/src/Install/Prerequisite/PhpVersion.php +++ b/framework/core/src/Install/Prerequisite/PhpVersion.php @@ -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.', ]); }