Skip to content

Commit c6f11a8

Browse files
authored
Update ServiceProvider.php
1 parent 9818cc8 commit c6f11a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public function boot()
2828
*/
2929
public function register()
3030
{
31-
$this->app->singleton(Pdd::class, function ($laravelApp) {
31+
$this->app->singleton('EasyPddService', function ($laravelApp) {
3232
$app = new Pdd(config('pdd'));
3333
return $app;
3434
});
3535
}
3636

3737
public function provides()
3838
{
39-
return ['EasyPdd'];
39+
return ['EasyPddService'];
4040
}
4141
}

0 commit comments

Comments
 (0)