Skip to content

Commit

Permalink
protected a method on the app class and removed superfluous use state…
Browse files Browse the repository at this point in the history
…ment from the view provider
  • Loading branch information
BenRutlandWeb committed Feb 5, 2021
1 parent 645c317 commit 6add585
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion app/Support/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')) {
Expand Down
1 change: 0 additions & 1 deletion app/Support/View/ViewServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Plugin\Support\View;

use Plugin\Support\ServiceProvider;
use Plugin\Support\View\View;

class ViewServiceProvider extends ServiceProvider
{
Expand Down

0 comments on commit 6add585

Please sign in to comment.