Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class SearchSynonym extends DataObject |
||
11 | { |
||
12 | private static $table_name = 'SearchSynonym'; |
||
13 | |||
14 | private static $singular_name = 'Search synonym'; |
||
1 ignored issue
–
show
|
|||
15 | |||
16 | private static $plural_name = 'Search synonyms'; |
||
1 ignored issue
–
show
|
|||
17 | |||
18 | private static $db = [ |
||
19 | 'Keyword' => 'Varchar(255)', |
||
20 | 'Synonym' => 'Text' |
||
21 | ]; |
||
22 | |||
23 | private static $summary_fields = [ |
||
1 ignored issue
–
show
|
|||
24 | 'Keyword', |
||
25 | 'Synonym' |
||
26 | ]; |
||
27 | |||
28 | public function getCMSFields() |
||
37 |