Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
53 | public function dataTestFormatDateTime(): array |
||
54 | { |
||
55 | return [ |
||
56 | [new DateTimeImmutable('2016-03-11 11:05:00', new DateTimeZone('Europe/Prague')), '2016-03-11T11:05:00+01:00'], |
||
57 | [new DateTimeImmutable('2016-08-11 11:05:00', new DateTimeZone('Europe/Prague')), '2016-08-11T11:05:00+02:00'], |
||
58 | ]; |
||
59 | } |
||
60 | |||
62 |