1 | <?php |
||
2 | /** |
||
3 | * This file is part of the dingtalk. |
||
4 | * User: Ilham Tahir <[email protected]> |
||
5 | * This source file is subject to the MIT license that is bundled |
||
6 | * with this source code in the file LICENSE. |
||
7 | */ |
||
8 | |||
9 | namespace Aplisin\DingTalk\User; |
||
10 | |||
11 | use Aplisin\DingTalk\Kernel\BaseClient; |
||
12 | |||
13 | class Client extends BaseClient |
||
14 | { |
||
15 | /** |
||
16 | * @param array $params |
||
17 | * @return \Aplisin\DingTalk\Kernel\Http\Response |
||
18 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
19 | */ |
||
20 | public function simpleList(array $params) |
||
21 | { |
||
22 | return $this->httpGet('/user/simplelist', $params); |
||
0 ignored issues
–
show
Bug
Best Practice
introduced
by
![]() |
|||
23 | } |
||
24 | } |
||
25 |