Completed
Pull Request — master (#218)
by
unknown
02:14
created
Classes/ViewHelpers/DateTime/FormatUtcDateViewHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.