| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class HeidelpayToCurrencyFacadeBridge implements HeidelpayToCurrencyFacadeInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var \Spryker\Zed\Currency\Business\CurrencyFacadeInterface |
||
| 16 | */ |
||
| 17 | protected $currencyFacade; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param \Spryker\Zed\Currency\Business\CurrencyFacadeInterface $currencyFacade |
||
| 21 | */ |
||
| 22 | public function __construct($currencyFacade) |
||
| 23 | { |
||
| 24 | $this->currencyFacade = $currencyFacade; |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return \Generated\Shared\Transfer\CurrencyTransfer |
||
| 29 | */ |
||
| 30 | public function getCurrent(): CurrencyTransfer |
||
| 33 | } |
||
| 34 | } |
||
| 35 |