laravel-learn-bbs/app/Providers/JpushServiceProvider.php

34 lines
615 B
PHP
Raw Normal View History

2018-06-16 02:18:41 +00:00
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use JPush\Client;
class JpushServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
$this->app->singleton(Client::class, function ($app) {
return new Client(config('jpush.key'), config('jpush.secret'));
});
$this->app->alias(Client::class, 'jpush');
}
}