1 | <?php |
||
12 | class DeltaProductWriter extends ProductWriter |
||
13 | { |
||
14 | /** |
||
15 | * @var ProductExportManager |
||
16 | */ |
||
17 | protected $productExportManager; |
||
18 | |||
19 | /** |
||
20 | * @var JobInstance |
||
21 | */ |
||
22 | protected $jobInstance; |
||
23 | |||
24 | /** |
||
25 | * @var EventDispatcher |
||
26 | */ |
||
27 | protected $eventDispatcher; |
||
28 | |||
29 | /** |
||
30 | * Constructor |
||
31 | * |
||
32 | * @param EventDispatcher $eventDispatcher |
||
33 | * @param ChannelManager $channelManager |
||
34 | * @param ProductExportManager $productExportManager |
||
35 | */ |
||
36 | public function __construct( |
||
44 | |||
45 | /** |
||
46 | * @param array $items |
||
47 | */ |
||
48 | public function write(array $items) |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function setStepExecution(StepExecution $stepExecution) |
||
69 | } |
||
70 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.