| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Providers;
- use App\Service\WechatService;
- use Illuminate\Support\ServiceProvider;
- class WechatServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap the application services.
- *
- * @return void
- */
- public function boot()
- {
- //
- }
- /**
- * Register the application services.
- *
- * @return void
- */
- public function register()
- {
- $this->app->singleton('wechat', function () {
- return new WechatService();
- });
- }
- }
|