Exemplo n.º 1
0
 /**
  * Update certain information of an order.
  *
  * @param  int    $orderCode   The unique Payment Order ID.
  * @param  array  $parameters
  * @return null
  */
 public function update($orderCode, array $parameters)
 {
     return $this->client->patch(self::ENDPOINT . $orderCode, [\GuzzleHttp\RequestOptions::FORM_PARAMS => $parameters]);
 }