// +---------------------------------------------------------------------- namespace crmeb\services\wechat\live; use Pimple\Container; use Pimple\ServiceProviderInterface; /** * Class ServiceProvider. * * @author onekb <1@1kb.ren> */ class ServiceProvider implements ServiceProviderInterface { /** * {@inheritdoc}. */ public function register(Container $app) { $app['live'] = function ($app) { return new LiveClient($app); }; } }