Update Installer.php

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

Wyświetl plik

@ -154,7 +154,7 @@ class Installer extends Command
protected function checkPHPOptionalDependencies()
{
$this->line(' ');
$this->info('Checking For Additional PHP Extensions...');
$this->info('Checking For Optional PHP Extensions...');
$extensions = [
'gd',
@ -176,7 +176,7 @@ class Installer extends Command
protected function checkFFmpegDependencies()
{
$this->line(' ');
$this->info('Checking for required FFmpeg dependencies...');
$this->info('Checking for Required FFmpeg dependencies...');
$ffmpeg = exec('which ffmpeg');
if(empty($ffmpeg)) {
@ -190,7 +190,7 @@ class Installer extends Command
protected function checkOptimiseDependencies()
{
$this->line(' ');
$this->info('Checking for optional Media Optimisation dependencies...');
$this->info('Checking for Optional Media Optimisation dependencies...');
$dependencies = [
'jpegoptim',