Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class Application extends ServiceContainer |
||
20 | { |
||
21 | protected $providers = [ |
||
22 | Auth\ServiceProvider::class, |
||
23 | Department\ServiceProvider::class, |
||
24 | User\ServiceProvider::class |
||
25 | ]; |
||
26 | |||
27 | protected $defaultConfig = [ |
||
28 | // http://docs.guzzlephp.org/en/stable/request-options.html |
||
29 | 'http' => [ |
||
30 | 'base_uri' => 'https://oapi.dingtalk.com/', |
||
31 | ], |
||
32 | ]; |
||
33 | |||
34 | public function __call($method, $arguments) |
||
39 |