Conditions | 4 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 8 | protected function filterByProperty(array $locales, $property) |
|
16 | { |
||
17 | 8 | $filtered = []; |
|
18 | |||
19 | 8 | foreach ($locales as $locale) { |
|
20 | 4 | if ( ! empty($locale->$property) && ! in_array($locale->$property, $filtered)) { |
|
21 | 4 | $filtered[] = $locale->$property; |
|
22 | } |
||
23 | } |
||
24 | |||
25 | 8 | return $filtered; |
|
26 | } |
||
28 |