Conditions | 4 |
Paths | 3 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
15 | 103 | public function getExistedValues($fieldList) |
|
16 | { |
||
17 | 103 | $fields = []; |
|
18 | 103 | foreach ($fieldList as $field) { |
|
19 | 103 | $fields[$field] = isset($this->$field) ? $this->$field : null; |
|
20 | 103 | } |
|
21 | |||
22 | 103 | $fields = array_filter($fields, function($field) { |
|
23 | 103 | if (is_array($field)) { |
|
24 | 7 | return !empty($field); |
|
25 | } |
||
26 | |||
27 | 103 | return strlen($field); |
|
28 | 103 | }); |
|
29 | |||
30 | 103 | return $fields; |
|
31 | } |
||
32 | |||
44 |