for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyIM\TencentIM\Speak;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
/**
* Class ServiceProvider
*
* @package EasyIM\TencentIM\Speak
* @author longing <[email protected]>
*/
class ServiceProvider implements ServiceProviderInterface
{
* {@inheritdoc}.
public function register(Container $app)
$app['speak'] = function ($app) {
return new Client($app);
};
}