Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class StandardDateFactory implements UnixTimeConverterInterface |
||
14 | { |
||
15 | /** |
||
16 | * @inheritDoc |
||
17 | */ |
||
18 | public function fromUnixTime(Conversion $conversion) |
||
19 | { |
||
20 | $conversion->setTo(new Standard()); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @inheritDoc |
||
25 | */ |
||
26 | public function toUnixTime(Conversion $conversion) |
||
28 | } |
||
29 | } |
||
30 |