php-json-rpc/src/Providers/ClientServiceProvider.php
2019-01-11 16:29:21 +08:00

39 lines
767 B
PHP

<?php
namespace JsonRpc\Providers;
use Illuminate\Support\ServiceProvider;
use JsonRpc\Client;
class ClientServiceProvider extends ServiceProvider
{
protected $defer = false;
/**
* Register any application services.
*
* @return void
*/
public function register()
{
$this->app->configure('rpc');
$config = config('rpc.client');
$this->app->singleton('rpc', function () use ($config) {
return new Client($config);
});
foreach ($config as $k => $item) {
$this->app->singleton('rpc.' . $k, function () use ($k) {
return app('rpc')->endpoint($k);
});
}
}
public function provides()
{
return ['rpc'];
}
}