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