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 | 51 | ||
35 | /** |
||
36 | * @see ValueFormatter::format |
||
37 | * |
||
38 | 51 | * @param GlobeCoordinateValue $value |
|
39 | * |
||
40 | 51 | * @return string Plain text |
|
41 | * @throws InvalidArgumentException |
||
42 | */ |
||
43 | public function format( $value ) { |
||
50 | |||
51 | } |
||
52 |