Conditions | 4 |
Paths | 5 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
13 | 2 | public static function getFirstEntityValue($entityName, array $entities) |
|
14 | { |
||
15 | 2 | if (!isset($entities[$entityName][0]['value'])) { |
|
16 | 1 | return null; |
|
17 | } |
||
18 | |||
19 | 1 | $val = $entities[$entityName][0]['value']; |
|
20 | |||
21 | 1 | return is_array($val) && isset($val['value']) ? $val['value'] : $val; |
|
22 | } |
||
23 | } |
||
24 |