@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | /** |
4 | 4 | * Provide strftime function in UTC context. |
5 | 5 | */ |
6 | -declare(strict_types=1); |
|
6 | +declare(strict_types = 1); |
|
7 | 7 | |
8 | 8 | namespace HDNET\Calendarize\ViewHelpers\DateTime; |
9 | 9 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | // set timezone to UTC |
30 | 30 | date_default_timezone_set('UTC'); |
31 | 31 | |
32 | - $result = strftime($format, (int) $date->format('U')); |
|
32 | + $result = strftime($format, (int)$date->format('U')); |
|
33 | 33 | |
34 | 34 | // restore timezone setting |
35 | 35 | date_default_timezone_set($timezone); |