1 | <?php |
||
8 | abstract class AbstractIndexMerger implements IndexMergerInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var ConflictHandlerInterface |
||
12 | */ |
||
13 | protected $conflictHandler; |
||
14 | |||
15 | public function setConflictHandler(ConflictHandlerInterface $conflictHandler = null): IndexMergerInterface |
||
21 | |||
22 | public function getConflictHandler(): ConflictHandlerInterface |
||
31 | } |
||
32 |