Total Complexity | 7 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class GregorianCalendar implements CalendarInterface |
||
16 | { |
||
17 | /** |
||
18 | * @inheritDoc |
||
19 | */ |
||
20 | public function format(DateTimeInterface $input, $format) |
||
21 | { |
||
22 | return $input->format($format); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | public function formatDateRepresentation(DateRepresentationInterface $input, $format) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritDoc |
||
35 | */ |
||
36 | public function parse($input, $format, DateTimeZone $timezone = null) |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @inheritDoc |
||
47 | */ |
||
48 | public function parseToDateRepresentation($input, $format, DateTimeZone $timezone = null) |
||
51 | } |
||
52 | } |
||
53 |