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