From dbbfb01e3aae898c8b1fbf21fb9e68d313072e66 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sat, 10 Aug 2019 00:15:17 +0200 Subject: [PATCH] Remove obsolete constructor parameter This was removed in commit 7b2807a8. --- framework/core/src/Install/Installer.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/framework/core/src/Install/Installer.php b/framework/core/src/Install/Installer.php index 287a513fe..514c8e364 100644 --- a/framework/core/src/Install/Installer.php +++ b/framework/core/src/Install/Installer.php @@ -17,8 +17,6 @@ use Flarum\Http\Middleware\HandleErrorsWithWhoops; use Flarum\Http\Middleware\StartSession; use Flarum\Install\Console\InstallCommand; use Illuminate\Contracts\Container\Container; -use Illuminate\Contracts\Translation\Translator; -use Illuminate\Validation\Factory; use Zend\Stratigility\MiddlewarePipe; class Installer implements AppInterface @@ -55,8 +53,7 @@ class Installer implements AppInterface { return [ new InstallCommand( - $this->container->make(Installation::class), - new Factory($this->container->make(Translator::class)) + $this->container->make(Installation::class) ), ]; }