Completed
Push — master ( 07b435...cba1df )
by Tim
02:38
created
Classes/ViewHelpers/DateTime/ModifyViewHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         if ($dateTime === null) {
34 34
             $dateTime = $this->renderChildren();
35 35
         }
36
-        if (! $dateTime instanceof \DateTimeInterface) {
36
+        if (!$dateTime instanceof \DateTimeInterface) {
37 37
             $dateTime = new \DateTime();
38 38
         }
39 39
 
Please login to merge, or discard this patch.
Classes/ViewHelpers/DateTime/FormatUtcDateViewHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         // set timezone to UTC
34 34
         \date_default_timezone_set('UTC');
35 35
 
36
-        $result = \strftime($this->arguments['format'], (int) $this->arguments['date']->format('U'));
36
+        $result = \strftime($this->arguments['format'], (int)$this->arguments['date']->format('U'));
37 37
 
38 38
         // restore timezone setting
39 39
         \date_default_timezone_set($timezone);
Please login to merge, or discard this patch.