1 | <?php |
||
15 | class TimeFormatter implements FormatterInterface |
||
16 | { |
||
17 | /** @var Time */ |
||
18 | private $time; |
||
19 | |||
20 | /** |
||
21 | * @param Time $time |
||
22 | */ |
||
23 | 42 | public function __construct(Time $time) |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 16 | public function getShort() : string |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | 6 | public function getLong() : string |
|
48 | } |
||
49 |