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