Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | public function transitionsProvider() { |
||
51 | |||
52 | // DTSTART can be different pending the OS hence use .* |
||
53 | |||
54 | yield [ |
||
55 | 'UTC', |
||
56 | 1, |
||
57 | 2, |
||
58 | "BEGIN:VTIMEZONE\r\nTZID:UTC\r\nBEGIN:STANDARD\r\nDTSTART:.*\r\nTZOFFSETFROM:+0000\r\nTZOFFSETTO:+0000\r\nTZNAME:UTC\r\nEND:STANDARD\r\nEND:VTIMEZONE\r\n" |
||
59 | ]; |
||
60 | } |
||
61 | |||
63 |