Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function balance($access_token, array $account_ids = []) |
||
22 | { |
||
23 | return $this->handleRequest(function (ClientInterface $client) use ($access_token, $account_ids) { |
||
24 | $data = $this->getBaseDataWithAccounts($access_token, $account_ids); |
||
25 | |||
26 | return $client->post('/accounts/balance/get', $data); |
||
27 | }); |
||
30 |