Conditions | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 48 | public final static function mapOf(...$pairs): MapInterface |
|
34 | { |
||
35 | 48 | $map = emptyMap(); |
|
36 | 48 | $map->setArray(array_combine( |
|
37 | 48 | array_map(fn (Pair $pair) => $pair->getKey(), $pairs), //keys |
|
38 | 48 | array_map(fn (Pair $pair) => $pair->getValue(), $pairs) //values |
|
39 | )); |
||
40 | 48 | return $map; |
|
41 | } |
||
80 |