Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
54 | public function call( |
||
55 | $method, |
||
56 | $path, |
||
57 | array $query = array(), |
||
58 | array $postFields = array(), |
||
59 | array $files = array(), |
||
60 | array $headers = array() |
||
61 | ) { |
||
62 | $query = array_replace($query, [ 'oauth_token' => $this->token ]); |
||
63 | |||
64 | return $this->client->call($method, $path, $query, $postFields, $files, $headers); |
||
65 | } |
||
66 | } |
||
67 |