| 1 | <?php |
||
| 5 | final class IndexRepositoryDefaultConstraintEvent |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array |
||
| 9 | */ |
||
| 10 | private $indexIds; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | private $indexTypes; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | private $additionalSlotArguments; |
||
| 21 | |||
| 22 | public function __construct(array $indexIds, array $indexTypes, array $additionalSlotArguments) |
||
| 28 | |||
| 29 | public function getIndexIds(): array |
||
| 33 | |||
| 34 | public function setIndexIds(array $indexIds): void |
||
| 38 | |||
| 39 | public function getIndexTypes(): array |
||
| 43 | |||
| 44 | public function getAdditionalSlotArguments(): array |
||
| 48 | } |
||
| 49 |