| 1 | <?php | ||
| 16 | final class PostIndexMappingBuildEvent extends IndexEvent | ||
| 17 | { | ||
| 18 | /** | ||
| 19 | * @var IndexConfigInterface | ||
| 20 | */ | ||
| 21 | private $indexConfig; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @var array | ||
| 25 | */ | ||
| 26 | private $mapping; | ||
| 27 | |||
| 28 | public function __construct(IndexConfigInterface $indexConfig, array $mapping) | ||
| 35 | |||
| 36 | public function getIndexConfig(): IndexConfigInterface | ||
| 40 | |||
| 41 | public function getMapping(): array | ||
| 45 | |||
| 46 | public function setMapping(array $mapping): void | ||
| 50 | } | ||
| 51 |