From 6add585468e4188becd48f0aa2e33690871f166c Mon Sep 17 00:00:00 2001 From: Ben Rutland Date: Fri, 5 Feb 2021 18:47:48 +0000 Subject: [PATCH] protected a method on the app class and removed superfluous use statement from the view provider --- app/Support/Foundation/Application.php | 2 +- app/Support/View/ViewServiceProvider.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Support/Foundation/Application.php b/app/Support/Foundation/Application.php index 2bee0ff..5733a11 100644 --- a/app/Support/Foundation/Application.php +++ b/app/Support/Foundation/Application.php @@ -101,7 +101,7 @@ public function register(string $provider) * * @return void */ - public function bootProviders() + protected function bootProviders() { foreach ($this->providers as $provider) { if (method_exists($provider, 'boot')) { diff --git a/app/Support/View/ViewServiceProvider.php b/app/Support/View/ViewServiceProvider.php index 4264f9d..32d4d1f 100644 --- a/app/Support/View/ViewServiceProvider.php +++ b/app/Support/View/ViewServiceProvider.php @@ -3,7 +3,6 @@ namespace Plugin\Support\View; use Plugin\Support\ServiceProvider; -use Plugin\Support\View\View; class ViewServiceProvider extends ServiceProvider {