1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53:
<?php
/**
* Fat Zebra REST Fetch Transaction Request
*/
namespace Omnipay\Fatzebra\Message;
/**
* Fat Zebra REST Fetch Transaction Request
*
* Example -- note this example assumes that the purchase has been successful
* and that the transaction ID returned from the purchase is held in $sale_id.
* See PurchaseRequest for the first part of this example transaction:
*
* <code>
* // Fetch the transaction so that details can be found for refund, etc.
* $transaction = $gateway->fetchTransaction();
* $transaction->setTransactionReference($sale_id);
* $response = $transaction->send();
* $data = $response->getData();
* echo "Gateway fetchTransaction response data == " . print_r($data, true) . "\n";
* </code>
*
* @see PurchaseRequest
* @see Omnipay\Fatzebra\FatzebraGateway
* @link http://www.paystream.com.au/developer-guides/
*/
class FetchTransactionRequest extends AbstractRestRequest
{
public function getData()
{
$this->validate('transactionReference');
return array();
}
/**
* Get HTTP Method.
*
* The HTTP method for fetchTransaction requests must be GET.
*
* @return string
*/
protected function getHttpMethod()
{
return 'GET';
}
public function getEndpoint()
{
return parent::getEndpoint() . '/purchases/' . $this->getTransactionReference();
}
}