| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Providers;
- use App\Services\ApiFootball\Sdk;
- use Illuminate\Support\ServiceProvider;
- class ApiFootballServiceProvider extends ServiceProvider
- {
- /**
- * Register services.
- */
- public function register(): void
- {
- // $this->app->singleton(Sdk::class, function ($app) {
- // return new Sdk();
- // });
-
- // 或者使用别名
- $this->app->alias(Sdk::class, 'api-football');
- }
- /**
- * Bootstrap services.
- */
- public function boot(): void
- {
- //
- }
- }
|