Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
50 | 2 | protected function prepareParsedData(array $matches) |
|
51 | { |
||
52 | // Remove indexed values |
||
53 | 2 | $filtered = array_filter(array_keys($matches), 'is_string'); |
|
54 | 2 | $result = array_intersect_key($matches, array_flip($filtered)); |
|
55 | 2 | $result = array_filter($result); |
|
56 | |||
57 | 2 | return $result; |
|
58 | } |
||
59 | |||
67 |