Passed
Push — master ( ca4e2d...533f2e )
by Derek Stephen
13:15 queued 11:23
created
src/Field/Transformer/DateTimeTransformer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
     public function output(string $value): ?DateTimeInterface
28 28
     {
29
-        $date =  DateTime::createFromFormat($this->dateFormat, $value, new DateTimeZone('UTC'));
29
+        $date = DateTime::createFromFormat($this->dateFormat, $value, new DateTimeZone('UTC'));
30 30
 
31 31
         if (!$date) {
32 32
             $date = new DateTime($value, new DateTimeZone('UTC'));
Please login to merge, or discard this patch.