Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
21 | class DataCubeClient extends BaseClient |
||
22 | { |
||
23 | /** |
||
24 | * 获取员工行为数据. |
||
25 | * |
||
26 | * @see https://work.weixin.qq.com/api/doc#90000/90135/91580 |
||
27 | * |
||
28 | * @param array $userIds |
||
29 | * @param string $from |
||
30 | * @param string $to |
||
31 | * |
||
32 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
33 | * |
||
34 | * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException |
||
35 | */ |
||
36 | 1 | public function userBehavior(array $userIds, string $from, string $to) |
|
47 |