12345678910111213141516171819202122232425262728 |
- <?php
- namespace EasyWeChat\MiniProgram\UniformMessage;
- use Pimple\Container;
- use Pimple\ServiceProviderInterface;
- class ServiceProvider implements ServiceProviderInterface
- {
-
- public function register(Container $app)
- {
- $app['uniform_message'] = function ($app) {
- return new Client($app);
- };
- }
- }
|