1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace crmeb\services\wechat\department;
- use Pimple\Container;
- use Pimple\ServiceProviderInterface;
- class ServiceProvider implements ServiceProviderInterface
- {
-
- public function register(Container $app)
- {
- $app['department'] = function ($app) {
- return new Client($app);
- };
- }
- }
|