| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Accounts extends Api |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * List all accounts. |
||
| 11 | * |
||
| 12 | * @return \Glorand\Drip\Api\Response\ApiResponse |
||
| 13 | */ |
||
| 14 | 1 | public function list(): ApiResponse |
|
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Fetch an account. |
||
| 21 | * |
||
| 22 | * @param string $accountId |
||
| 23 | * |
||
| 24 | * @return \Glorand\Drip\Api\Response\ApiResponse |
||
| 25 | */ |
||
| 26 | 1 | public function show(string $accountId): ApiResponse |
|
| 31 |