1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Core;
4:
5: use DateTimeInterface;
6:
7: /**
8: * @api
9: */
10: interface DateFormatterInterface extends DateParserInterface
11: {
12: /**
13: * Format a date and time as a string
14: */
15: public function format(DateTimeInterface $date): string;
16: }
17: