Skip to content

Commit d305c0c

Browse files
committed
Merge branch '4.4' into 5.4
* 4.4: Fix CS
2 parents e62efe3 + 834ba2a commit d305c0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DateFormatter/DateFormat/TimezoneTransformer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function format(\DateTime $dateTime, int $length): string
5959
return $dateTime->format('\G\M\TP');
6060
}
6161

62-
return sprintf('GMT%s%d', ($offset >= 0 ? '+' : ''), $offset / 100);
62+
return sprintf('GMT%s%d', $offset >= 0 ? '+' : '', $offset / 100);
6363
}
6464

6565
/**

0 commit comments

Comments
 (0)