| Total Complexity | 2 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | class Client extends BaseClient |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Get Room List. |
||
| 25 | * |
||
| 26 | * @param int $start |
||
| 27 | * @param int $limit |
||
| 28 | * |
||
| 29 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
| 30 | * @deprecated This method has been merged into `\EasyWeChat\MiniProgram\Broadcast` |
||
| 31 | */ |
||
| 32 | 2 | public function getRooms(int $start = 0, int $limit = 10) |
|
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get Playback List. |
||
| 44 | * |
||
| 45 | * @param int $roomId |
||
| 46 | * @param int $start |
||
| 47 | * @param int $limit |
||
| 48 | * |
||
| 49 | * @return array|\EasyWeChat\Kernel\Support\Collection|object|\Psr\Http\Message\ResponseInterface|string |
||
| 50 | * @deprecated This method has been merged into `\EasyWeChat\MiniProgram\Broadcast` |
||
| 51 | */ |
||
| 52 | 1 | public function getPlaybacks(int $roomId, int $start = 0, int $limit = 10) |
|
| 64 |