Conditions | 5 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | public function call($method, $url, $options = array()) |
||
36 | { |
||
37 | return $this->getTransport()->call( |
||
38 | $method, |
||
39 | $url, |
||
40 | isset($options['params']) ? $options['params'] : array(), |
||
41 | isset($options['query']) ? $options['query'] : array(), |
||
42 | isset($options['file']) ? $options['file'] : array(), |
||
43 | isset($options['return_code']) ? $options['return_code'] : false |
||
44 | ); |
||
45 | } |
||
46 | } |
||
47 |