| 1 | <?php |
||
| 21 | class CartQuantityRuleChecker implements RuleCheckerContract |
||
| 22 | { |
||
| 23 | const TYPE = 'cart_quantity'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param DiscountSubjectContract $subject |
||
| 27 | * @param array $configuration |
||
| 28 | * @param DiscountContract $discount |
||
| 29 | * |
||
| 30 | * @return bool|mixed |
||
| 31 | */ |
||
| 32 | 5 | public function isEligible(DiscountSubjectContract $subject, array $configuration, DiscountContract $discount) |
|
| 36 | } |
||
| 37 |