| 1 | <?php |
||
| 24 | class GlobeCoordinateFormatter implements ValueFormatter { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var LatLongFormatter |
||
| 28 | */ |
||
| 29 | private $formatter; |
||
| 30 | |||
| 31 | public function __construct( FormatterOptions $options = null ) { |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @see ValueFormatter::format |
||
| 37 | * |
||
| 38 | * @param GlobeCoordinateValue $value |
||
| 39 | * |
||
| 40 | * @return string Plain text |
||
| 41 | * @throws InvalidArgumentException |
||
| 42 | */ |
||
| 43 | public function format( $value ) { |
||
| 50 | |||
| 51 | } |
||
| 52 |