From e313f2735b9bc62a9c206c58c922c92b7693d22a Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 14 Feb 2020 21:35:12 -0700 Subject: [PATCH] Update self-diagnosis command --- config/self-diagnosis.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/config/self-diagnosis.php b/config/self-diagnosis.php index e9b12dba6..7a670c157 100644 --- a/config/self-diagnosis.php +++ b/config/self-diagnosis.php @@ -28,12 +28,6 @@ return [ ], ], \BeyondCode\SelfDiagnosis\Checks\EnvFileExists::class, - \BeyondCode\SelfDiagnosis\Checks\LocalesAreInstalled::class => [ - 'required_locales' => [ - 'en_US', - PHP_OS === 'Darwin' ? 'en_US.UTF-8' : 'en_US.utf8', - ], - ], \BeyondCode\SelfDiagnosis\Checks\MaintenanceModeNotEnabled::class, \BeyondCode\SelfDiagnosis\Checks\MigrationsAreUpToDate::class, \BeyondCode\SelfDiagnosis\Checks\PhpExtensionsAreInstalled::class => [ @@ -56,7 +50,7 @@ return [ 'include_composer_extensions' => true, ], \BeyondCode\SelfDiagnosis\Checks\RedisCanBeAccessed::class => [ - 'default_connection' => true, + 'default_connection' => false, 'connections' => [], ], \BeyondCode\SelfDiagnosis\Checks\StorageDirectoryIsLinked::class,