| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function getAllCurrencies(): array |
||
| 39 | { |
||
| 40 | $currencies = []; |
||
| 41 | |||
| 42 | /** @var ChannelInterface $channel */ |
||
| 43 | foreach ($this->channelRepository->findAll() as $channel) { |
||
| 44 | $currencies[$channel->getCode()] = $channel->getBaseCurrency()->getCode(); |
||
| 45 | } |
||
| 46 | |||
| 47 | return $currencies; |
||
| 48 | } |
||
| 49 | } |
||
| 50 |