Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class NullParser implements ParserInterface |
||
12 | { |
||
13 | /** |
||
14 | * @inheritDoc |
||
15 | */ |
||
16 | public function parse($input, $format, DateTimeZone $timezone = null) |
||
17 | { |
||
18 | return null; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @inheritDoc |
||
23 | */ |
||
24 | public function parseToDateRepresentation($input, $format, DateTimeZone $timezone = null) |
||
27 | } |
||
28 | } |
||
29 |