Example #1
0
 /**
  * Update order data
  *
  * @param array $data data to update order resource with
  *
  * @return void
  */
 public function update(
     array $data
 ) {
     $options = array(
         'url' => $this->_location,
         'data' => $data
     );
     $this->connector->apply('POST', $this, $options);
 }
 /**
  * {@inheritDoc}
  */
 public function getTransport()
 {
     return $this->internalConnector->getTransport();
 }