Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
16 | View Code Duplication | public function parseRequest($request) { |
|
17 | $colName = empty($this->colParams['col']) ? $this->colName : $this->colParams['col']; |
||
18 | if (isset($request[$this->colName])) { |
||
19 | $this->activeForm->model->{$colName} = json_encode($request[$this->colName]); |
||
20 | } else { |
||
21 | $this->activeForm->model->{$colName} = 0; |
||
22 | $this->activeForm->model->{$colName} = ''; |
||
23 | } |
||
24 | } |
||
25 | |||
27 |