Skip to content

Commit

Permalink
Update ServiceProvider.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Observer5 authored May 10, 2022
1 parent e7a7ea3 commit dba07a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ public function boot()
*/
public function register()
{
$this->app->singleton('EasyPddService', function ($laravelApp) {
$this->app->singleton('EasyPdd', function ($laravelApp) {
$app = new Pdd(config('pdd'));
return $app;
});
}

public function provides()
{
return ['EasyPddService'];
return ['EasyPdd'];
}
}

0 comments on commit dba07a9

Please sign in to comment.