| 1 | <?php |
||
| 23 | final class ItemTotalRuleChecker implements RuleCheckerInterface, ChannelBasedRuleCheckerInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var RuleCheckerInterface |
||
| 27 | */ |
||
| 28 | private $itemTotalRuleChecker; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param RuleCheckerInterface $itemTotalRuleChecker |
||
| 32 | */ |
||
| 33 | public function __construct(RuleCheckerInterface $itemTotalRuleChecker) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function isEligible(PromotionSubjectInterface $subject, array $configuration) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | */ |
||
| 56 | public function getConfigurationFormType() |
||
| 60 | } |
||
| 61 |