| 1 | <?php |
||
| 15 | class DateTimeFormatter implements FormatterInterface |
||
| 16 | { |
||
| 17 | /** @var DateTime */ |
||
| 18 | private $dateTime; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param DateTime $dateTime |
||
| 22 | */ |
||
| 23 | 45 | public function __construct(DateTime $dateTime) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | 24 | public function getShort() : string |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | 35 | public function getLong() : string |
|
| 48 | } |
||
| 49 |