| 1 | <?php |
||
| 10 | class OffsetDateBuilder extends FixedTextBuilder |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @return OffsetDateParser |
||
| 14 | */ |
||
| 15 | protected function instantiateParser() |
||
| 16 | { |
||
| 17 | return new OffsetDateParser; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param ParserInterface $parser |
||
| 22 | * |
||
| 23 | * @return ParserInterface |
||
| 24 | * |
||
| 25 | * @throws RuntimeException |
||
| 26 | */ |
||
| 27 | 1 | protected function buildParser(ParserInterface $parser) |
|
| 40 | } |
||
| 41 |