1 | <?php |
||
13 | class SimpleFormatter implements FormatterInterface |
||
14 | { |
||
15 | /** |
||
16 | * @param Quantity $quantity |
||
17 | * @return string |
||
18 | */ |
||
19 | public function format(Quantity $quantity): string |
||
23 | |||
24 | /** |
||
25 | * @param Quantity $quantity |
||
26 | * @return string |
||
27 | 5 | */ |
|
28 | private function formatQuantity(Quantity $quantity): string |
||
34 | } |
||
35 |