1 | <?php |
||
9 | final class InconsistentCurrenciesError extends LogicException implements CurrencyError |
||
10 | { |
||
11 | /** @var Currency */ |
||
12 | private $ct1; |
||
13 | /** @var Currency */ |
||
14 | private $ct2; |
||
15 | |||
16 | 2 | public function __construct(Currency $ct1, Currency $ct2) |
|
29 | |||
30 | /** |
||
31 | * @return Currency[] |
||
32 | */ |
||
33 | 1 | public function getInconsistentCurrencyTypes(): array |
|
37 | } |
||
38 |