Skip to content

Commit

Permalink
Merge pull request #3 from BenRutlandWeb/fix/protect-app-method
Browse files Browse the repository at this point in the history
protected a method on the app class and removed superfluous use state…
  • Loading branch information
BenRutlandWeb authored Feb 5, 2021
2 parents 660625e + 6add585 commit 1030aa4
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 1030aa4

Please sign in to comment.