| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Ntholenaar\MultiSafepayClient\Request; |
||
| 18 | public function all($country = null, $currency = null, $amount = null) |
||
| 19 | { |
||
| 20 | $uri = $this->getUriFactory()->createUri($this->getBaseUrl()); |
||
| 21 | |||
| 22 | $parameters = array_filter( |
||
| 23 | compact('country', 'currency', 'amount') |
||
| 24 | ); |
||
| 25 | |||
| 26 | return $this->get($uri, $parameters); |
||
| 27 | } |
||
| 28 | |||
| 45 |