| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class ProductOptionsContext implements ProductOptionsContextInterface |
||
| 16 | { |
||
| 17 | /** @var TaxonContextInterface */ |
||
| 18 | private $taxonContext; |
||
| 19 | |||
| 20 | /** @var ProductOptionsFinderInterface */ |
||
| 21 | private $optionsFinder; |
||
| 22 | |||
| 23 | public function __construct( |
||
| 24 | TaxonContextInterface $taxonContext, |
||
| 25 | ProductOptionsFinderInterface $optionsFinder |
||
| 26 | ) { |
||
| 27 | $this->taxonContext = $taxonContext; |
||
| 28 | $this->optionsFinder = $optionsFinder; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getOptions(): ?array |
||
| 37 | } |
||
| 38 | } |
||
| 39 |