From 563b7af500682cbdc291c3535c8807b802253cbb Mon Sep 17 00:00:00 2001 From: Shlee Date: Sat, 25 Jun 2022 12:10:41 +0930 Subject: [PATCH] Update Installer.php --- app/Console/Commands/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/Installer.php b/app/Console/Commands/Installer.php index e22a61441..9867b3d7d 100644 --- a/app/Console/Commands/Installer.php +++ b/app/Console/Commands/Installer.php @@ -148,9 +148,9 @@ class Installer extends Command foreach ($extensions as $ext) { if (extension_loaded($ext) == false) { - $this->error("- \"{$ext}\" PHP extension not found"); + $this->error("- \"{$ext}\" not found"); } else { - $this->info("- \"{$ext}\" PHP extension found"); + $this->info("- \"{$ext}\" found"); } }