| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class ServerSearch extends Server |
||
| 17 | { |
||
| 18 | use SearchModelTrait { |
||
| 19 | searchAttributes as defaultSearchAttributes; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function searchAttributes() |
||
| 26 | { |
||
| 27 | return ArrayHelper::merge($this->defaultSearchAttributes(), [ |
||
| 28 | 'with_requests', |
||
| 29 | 'show_deleted', |
||
| 30 | 'with_discounts', |
||
| 31 | 'wizzarded_eq' |
||
| 32 | ]); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function attributeLabels() |
||
| 39 | ]); |
||
| 40 | } |
||
| 42 |