From c5cbba3416e55b12cc512da495736aba80f6f7d4 Mon Sep 17 00:00:00 2001 From: Philipp Date: Thu, 14 Mar 2019 22:59:30 +0100 Subject: [PATCH] Fix boolean value --- src/Core/Console/AutomaticInstallation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Console/AutomaticInstallation.php b/src/Core/Console/AutomaticInstallation.php index 32dbf9567e..280e3d1071 100644 --- a/src/Core/Console/AutomaticInstallation.php +++ b/src/Core/Console/AutomaticInstallation.php @@ -220,7 +220,7 @@ HELP; } $php_path = null; - if (!$configCache->has('config', 'php_path')) { + if ($configCache->has('config', 'php_path')) { $php_path = $configCache->get('config', 'php_path'); }