Exemplo n.º 1
0
 /**
  * Get the checkout URL for an order.
  *
  * @param  int $orderCode  The unique Payment Order ID.
  * @return \GuzzleHttp\Psr7\Uri
  */
 public function getCheckoutUrl($orderCode)
 {
     return Uri::withQueryValue($this->client->getUrl()->withPath('web/checkout'), 'ref', $orderCode);
 }