Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
104 | 6 | protected function parseResult($result) |
|
105 | { |
||
106 | // use default setting |
||
107 | 6 | if (!is_array($result)) { |
|
108 | 2 | return; |
|
109 | } |
||
110 | |||
111 | 5 | $this->success = (1 === (int) Arr::get($result, 'response')); |
|
112 | 5 | $this->level = (int) Arr::get($result, 'evil_level', ''); |
|
113 | 5 | $this->msg = (string) Arr::get($result, 'err_msg'); |
|
114 | 5 | } |
|
115 | } |
||
116 |