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:
<?php
/**
* Fat Zebra REST Fetch Plan Request
*/
namespace Omnipay\Fatzebra\Message;
/**
* Fat Zebra REST Fetch Plan Request
*
* Example:
*
* <code>
* // Fetch all plans
* $transaction = $gateway->fetchPlan(array(
* 'transactionReference' => 'XXX-PL-YYYYYYY'
* ));
* $response = $transaction->send();
* $data = $response->getData();
* echo "Gateway fetchPlan response data == " . print_r($data, true) . "\n";
* </code>
*
* @see CreatePlanRequest
* @see Omnipay\Fatzebra\FatzebraGateway
* @link http://www.paystream.com.au/developer-guides/
*/
class FetchPlanRequest extends AbstractRestRequest
{
public function getData()
{
$this->validate('transactionReference');
return array();
}
/**
* Get HTTP Method.
*
* The HTTP method for fetchAll Plans requests must be GET.
*
* @return string
*/
protected function getHttpMethod()
{
return 'GET';
}
public function getEndpoint()
{
return parent::getEndpoint() . '/plans/' . $this->getTransactionReference();
}
}