| 1 | <?php namespace Ntholenaar\MultiSafepayClient\Api; |
||
| 3 | class Gateways extends AbstractApi |
||
| 4 | { |
||
| 5 | /** |
||
| 6 | * Get all gateways. |
||
| 7 | * |
||
| 8 | * @param string|null $country |
||
| 9 | * @param string|null $currency |
||
| 10 | * @param int|null $amount |
||
| 11 | * @return array |
||
| 12 | */ |
||
| 13 | public function all($country = null, $currency = null, $amount = null) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Show gateway. |
||
| 24 | * |
||
| 25 | * @param $identifier |
||
| 26 | * @return Object|null |
||
| 27 | */ |
||
| 28 | public function show($identifier) |
||
| 32 | } |
||
| 33 |