1 | <?php |
||
23 | class TaxCalculationStrategy extends AbstractTaxCalculationStrategy |
||
24 | { |
||
25 | /** |
||
26 | * @var SettingsInterface |
||
27 | */ |
||
28 | protected $settings; |
||
29 | |||
30 | /** |
||
31 | * @param string $type |
||
32 | * @param OrderTaxesApplicatorInterface[] $applicators |
||
33 | * @param SettingsInterface $settings |
||
34 | */ |
||
35 | public function __construct($type, array $applicators, SettingsInterface $settings) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function supports(OrderInterface $order, ZoneInterface $zone) |
||
49 | } |
||
50 |