| 1 | <?php |
||
| 17 | final class PostMappingBuildEvent extends Event |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var IndexConfigInterface |
||
| 21 | */ |
||
| 22 | private $indexConfig; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var array |
||
| 26 | */ |
||
| 27 | private $mapping; |
||
| 28 | |||
| 29 | 8 | public function __construct(IndexConfigInterface $indexConfig, array $mapping) |
|
| 34 | |||
| 35 | public function getIndexConfig(): IndexConfigInterface |
||
| 39 | |||
| 40 | 8 | public function getMapping(): array |
|
| 44 | |||
| 45 | public function setMapping(array $mapping): void |
||
| 49 | } |
||
| 50 |