| 1 | <?php namespace Ntholenaar\MultiSafepayClient\Request; |
||
| 3 | class GatewayRequest extends Request |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * {@inheritdoc} |
||
| 7 | */ |
||
| 8 | protected $baseUrl = 'gateways'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * Get all gateways. |
||
| 12 | * |
||
| 13 | * @param null $country |
||
| 14 | * @param null $currency |
||
| 15 | * @param null $amount |
||
| 16 | * @return \Psr\Http\Message\RequestInterface |
||
| 17 | */ |
||
| 18 | public function all($country = null, $currency = null, $amount = null) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * |
||
| 31 | * @param $identifier |
||
| 32 | * @return \Psr\Http\Message\RequestInterface |
||
| 33 | */ |
||
| 34 | public function show($identifier) |
||
| 44 | } |
||
| 45 |