1 | <?php |
||
23 | class ActivePromotionsByChannelProvider implements PreQualifiedPromotionsProviderInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var PromotionRepositoryInterface |
||
27 | */ |
||
28 | private $promotionRepository; |
||
29 | |||
30 | /** |
||
31 | * @param PromotionRepositoryInterface $promotionRepository |
||
32 | */ |
||
33 | public function __construct(PromotionRepositoryInterface $promotionRepository) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getPromotions(PromotionSubjectInterface $subject) |
||
52 | } |
||
53 |