JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrrequest('post', '/v2/orders', $params); } /** * @param int $id * @param string[] $params * @return Checkout|mixed */ public function checkout(int $id, array $params = []) { return $this->request('post', $this->buildPath('/v2/orders/%s/checkout', $id), $params); } /** * Retrieving information of a specific order by CoinGate order ID. * * @param int $id * @return Order|mixed */ public function get(int $id) { return $this->request('get', $this->buildPath('/v2/orders/%s', $id)); } /** * Retrieving information of all placed orders. * * @param string[] $params * @return Order[]|mixed */ public function list(array $params = []) { return $this->request('get', '/v2/orders', $params); } }