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