Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 2.0625 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | 51 | public function format( $value ) { |
|
44 | 51 | if ( !( $value instanceof GlobeCoordinateValue ) ) { |
|
45 | throw new InvalidArgumentException( 'Data value type mismatch. Expected a GlobeCoordinateValue.' ); |
||
46 | } |
||
47 | |||
48 | 51 | return $this->formatter->formatLatLongValue( $value->getLatLong(), $value->getPrecision() ); |
|
49 | } |
||
50 | |||
52 |