Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function init() |
||
28 | { |
||
29 | if ($this->model == null) { |
||
30 | throw new InvalidConfigException("The search model should not be empty."); |
||
31 | } |
||
32 | if ($this->formConfig == null) { |
||
33 | $this->formConfig = [ |
||
34 | 'id' => $this->formId, |
||
35 | 'action' => ['index'], |
||
36 | 'method' => 'post', |
||
37 | ]; |
||
38 | } |
||
39 | } |
||
40 | |||
50 |