1 | <?php |
||
10 | class IndexContext |
||
11 | { |
||
12 | private $alias; |
||
13 | private $typeContexts; |
||
14 | private $settings; |
||
15 | private $indicies; |
||
16 | |||
17 | /** |
||
18 | * @param Index $alias |
||
19 | * @param TypeContext[] $typeContexts |
||
20 | * @param array $settings |
||
21 | */ |
||
22 | 7 | public function __construct(Index $alias, array $typeContexts, array $settings = null) |
|
35 | |||
36 | /** |
||
37 | * @return Index |
||
38 | */ |
||
39 | 5 | public function getAlias() |
|
43 | |||
44 | /** |
||
45 | * @return TypeContext[] |
||
46 | */ |
||
47 | 5 | public function getTypeContexts() |
|
51 | |||
52 | /** |
||
53 | * @return array|null |
||
54 | */ |
||
55 | 5 | public function getSettings() |
|
59 | |||
60 | /** |
||
61 | * @return Index[] |
||
62 | */ |
||
63 | 7 | public function getIndicies() |
|
67 | } |
||
68 |