Update Installer.php

pull/3546/head
Shlee 2022-06-19 15:35:06 +09:30 zatwierdzone przez GitHub
rodzic d2e0b9ace1
commit 097a04edc3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -131,7 +131,7 @@ class Installer extends Command
protected function checkPHPRequiredDependencies()
{
$this->line(' ');
$this->info('Checking for required php extensions...');
$this->info('Checking for Required PHP Extensions...');
$extensions = [
'bcmath',
@ -144,7 +144,7 @@ class Installer extends Command
foreach($extensions as $ext) {
if(extension_loaded($ext) == false) {
$this->error("- \"{$ext}\" Required PHP extension not found, aborting installation");
$this->error("- \"{$ext}\" Required PHP Extension not found, aborting installation");
exit;
}
}
@ -154,7 +154,7 @@ class Installer extends Command
protected function checkPHPOptionalDependencies()
{
$this->line(' ');
$this->info('Checking For Optional PHP Extensions...');
$this->info('Checking For Additional PHP Extensions...');
$extensions = [
'gd',
@ -166,9 +166,9 @@ class Installer extends Command
foreach($extensions as $ext) {
if(extension_loaded($ext) == false) {
$this->error("- \"{$ext}\" Optional PHP extension not found");
$this->error("- \"{$ext}\" PHP extension not found");
} else {
$this->info ("- \"{$ext}\" Optional PHP extension found");
$this->info ("- \"{$ext}\" PHP extension found");
}
}
}