Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | final class DotNetTimeConverter implements DotNetTimeConverterInterface |
||
17 | { |
||
18 | private const MULTIPLIER = 1e7; |
||
19 | |||
20 | private const OFFSET = 621355968e9; |
||
21 | |||
22 | 1 | public function toDatetime(string $ticks): DateTimeInterface |
|
27 | } |
||
28 | |||
29 | 1 | public function toTicks(DateTimeInterface $datetime): string |
|
34 |