Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 20 | public function format( LatLongValue $latLong, string $format, bool $directional ) { |
|
25 | 20 | $formatter = new LatLongFormatter( new FormatterOptions( |
|
26 | [ |
||
27 | 20 | LatLongFormatter::OPT_FORMAT => $format, |
|
28 | 20 | LatLongFormatter::OPT_DIRECTIONAL => $directional, |
|
29 | 20 | LatLongFormatter::OPT_PRECISION => self::PRECISION_MAP[$format] |
|
30 | ] |
||
31 | ) ); |
||
32 | |||
33 | 20 | return $formatter->format( $latLong ); |
|
34 | } |
||
35 | |||
37 |