| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Providers;
- use App\Service\SmsService;
- use Illuminate\Support\ServiceProvider;
- class SmsServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap the application services.
- *
- * @return void
- */
- public function boot()
- {
- //
- }
- /**
- * Register the application services.
- *
- * @return void
- */
- public function register()
- {
- //使用bind绑定实例到接口以便依赖注入
- //使用singleton绑定单例
- $this->app->singleton('sms',function(){
- return new SmsService();
- });
- }
- }
|