| 1 | <?php |
||
| 21 | final class TestPromotionFactory implements TestPromotionFactoryInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var FactoryInterface |
||
| 25 | */ |
||
| 26 | private $promotionFactory; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param FactoryInterface $promotionFactory |
||
| 30 | */ |
||
| 31 | public function __construct(FactoryInterface $promotionFactory) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | public function create($name) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * {@inheritdoc} |
||
| 53 | */ |
||
| 54 | public function createForChannel($name, ChannelInterface $channel) |
||
| 61 | } |
||
| 62 |