From 5514944e0fd4eb6bd54a5971ba5cec75dbb5e64a Mon Sep 17 00:00:00 2001 From: DariusIII Date: Tue, 27 Mar 2018 13:33:40 +0200 Subject: [PATCH] Remove $kernel variable assignment from bootstraping laravel --- Changelog | 4 +++- bootstrap/autoload.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 0828be623..c5ba99f79 100755 --- a/Changelog +++ b/Changelog @@ -1,5 +1,7 @@ -2018-03-26 DariusIII +2018-03-27 DariusIII + * Chg: Remove $kernel variable assignment from bootstraping laravel * Chg: Fix RSS feeds for logged out users +2018-03-26 DariusIII * Chg: Update laravel/framework to version 5.6.13, guzzlehttp/guzzle and phpunit to latest versions * Chg: Add missing filelist route * Chg: Add newline after Info comment message in DbUpdate class diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index 21d789589..38335b9ff 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -15,4 +15,4 @@ if (! defined('HAS_WHICH')) { define('HAS_WHICH', Utility::hasWhich() ? true : false); } -$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); +$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();