1 | <?php |
||
23 | class IndexerProcessor implements IndexerProcessorInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var ReindexRunnerInterface |
||
27 | */ |
||
28 | private $reindexRunner; |
||
29 | |||
30 | /** |
||
31 | * IndexerProcessor constructor. |
||
32 | * @param ReindexRunnerInterface $reindexRunner |
||
33 | */ |
||
34 | public function __construct( |
||
39 | |||
40 | /** |
||
41 | * {@inheritDoc} |
||
42 | */ |
||
43 | public function process(string ...$indexerIds): void |
||
47 | } |
||
48 |