| 1 | <?php |
||
| 20 | class ActivePromotionsProvider implements PreQualifiedPromotionsProviderInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var PromotionRepositoryInterface |
||
| 24 | */ |
||
| 25 | private $promotionRepository; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param PromotionRepositoryInterface $promotionRepository |
||
| 29 | */ |
||
| 30 | public function __construct(PromotionRepositoryInterface $promotionRepository) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | public function getPromotions(PromotionSubjectInterface $subject) |
||
| 42 | } |
||
| 43 |