1 | <?php |
||
10 | class Hint |
||
11 | { |
||
12 | /** |
||
13 | * @var string The hint type (example 'USE INDEX') |
||
14 | */ |
||
15 | private $type; |
||
16 | /** |
||
17 | * @var string The hint list (example '(my_index)') |
||
18 | */ |
||
19 | private $list; |
||
20 | |||
21 | public function __construct(string $type, string $list) |
||
26 | |||
27 | public function getType(): string |
||
31 | |||
32 | public function getList(): string |
||
36 | } |
||
37 |