| 1 | <?php |
||
| 7 | class RequestFactory |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | private $nonces = []; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $method |
||
| 16 | * @param array $params |
||
| 17 | * @return Request |
||
| 18 | */ |
||
| 19 | 3 | public function create($method, $params = array()) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $string |
||
| 30 | * @return Response|Request|ApiError |
||
| 31 | * @throws \Exception |
||
| 32 | */ |
||
| 33 | 20 | public function response($string) |
|
| 53 | } |
||
| 54 |