Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
22 | 3 | public function keyValue($locale = 'en', $key = 'key', $value = 'value') |
|
23 | { |
||
24 | 3 | $this->prep($locale); |
|
25 | |||
26 | 3 | $key = $key ?: 'key'; |
|
27 | 3 | $value = $value ?: 'value'; |
|
28 | |||
29 | return $this->countries->transform(function($item, $index) use ($key, $value) { |
||
30 | 3 | return (object) [ $key => $index, $value =>$item ]; |
|
31 | 3 | })->values(); |
|
32 | } |
||
33 | |||
46 |