Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class IndexProperties implements IndexPropertiesContract |
||
8 | { |
||
9 | /** |
||
10 | * @var $wizard WizardContract |
||
|
|||
11 | */ |
||
12 | protected $wizard; |
||
13 | |||
14 | /** |
||
15 | * @var $index_name |
||
16 | */ |
||
17 | protected $index_name; |
||
18 | |||
19 | /** |
||
20 | * IndexProperties constructor. |
||
21 | * @param $index_name |
||
22 | * @param $wizard |
||
23 | */ |
||
24 | public function __construct($index_name,$wizard) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return mixed|void |
||
32 | */ |
||
33 | public function fulltext() |
||
34 | { |
||
35 | $this->wizard->updateIndexesForSpecialist($this->index_name,__FUNCTION__); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @return mixed|void |
||
40 | */ |
||
41 | public function unique() |
||
44 | } |
||
45 | |||
48 |