1 | <?php |
||
15 | class QuantityHtmlFormatter extends QuantityFormatter { |
||
16 | |||
17 | /** |
||
18 | * @see QuantityFormatter::formatNumber |
||
19 | * |
||
20 | * @param UnboundedQuantityValue $quantity |
||
21 | * |
||
22 | * @return string HTML |
||
23 | */ |
||
24 | 13 | protected function formatNumber( UnboundedQuantityValue $quantity ) { |
|
29 | |||
30 | /** |
||
31 | * @see QuantityFormatter::formatUnit |
||
32 | * |
||
33 | * @param string $unit URI |
||
34 | * |
||
35 | * @return string|null HTML |
||
36 | */ |
||
37 | 13 | protected function formatUnit( $unit ) { |
|
46 | |||
47 | } |
||
48 |