app->singleton('sms',function(){ return new SmsService(); }); //使用bind绑定实例到接口以便依赖注入 $this->app->bind('App\Contracts\SmsContract',function(){ return new SmsService(); }); } }