From 9461df880389dd913fbaa1effea38f9914e7d4c3 Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov <38059171+askvortsov1@users.noreply.github.com> Date: Thu, 29 Apr 2021 18:31:19 -0400 Subject: [PATCH] Remove unnecessary laravel config (#2796) --- framework/core/src/Foundation/InstalledSite.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/framework/core/src/Foundation/InstalledSite.php b/framework/core/src/Foundation/InstalledSite.php index e7f572e4f..a02a44d3a 100644 --- a/framework/core/src/Foundation/InstalledSite.php +++ b/framework/core/src/Foundation/InstalledSite.php @@ -153,19 +153,15 @@ class InstalledSite implements SiteInterface } /** - * @param Application $app * @return ConfigRepository */ - protected function getIlluminateConfig(Application $app) + protected function getIlluminateConfig() { return new ConfigRepository([ 'view' => [ 'paths' => [], 'compiled' => $this->paths->storage.'/views', ], - 'mail' => [ - 'driver' => 'mail', - ], 'session' => [ 'lifetime' => 120, 'files' => $this->paths->storage.'/sessions',