Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class ConfigProfileSearch extends ConfigProfile |
||
18 | { |
||
19 | use SearchModelTrait { |
||
20 | searchAttributes as defaultSearchAttributes; |
||
21 | } |
||
22 | |||
23 | /** {@inheritdoc} */ |
||
24 | public function searchAttributes() |
||
25 | { |
||
26 | return ArrayHelper::merge($this->defaultSearchAttributes(), [ |
||
27 | 'name_like', |
||
28 | ]); |
||
29 | } |
||
30 | |||
31 | /** {@inheritdoc} */ |
||
32 | public function attributeLabels() |
||
36 | ]); |
||
37 | } |
||
39 |