We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3528370 commit 834ba2aCopy full SHA for 834ba2a
DateFormatter/DateFormat/TimezoneTransformer.php
@@ -57,7 +57,7 @@ public function format(\DateTime $dateTime, int $length): string
57
return $dateTime->format('\G\M\TP');
58
}
59
60
- return sprintf('GMT%s%d', ($offset >= 0 ? '+' : ''), $offset / 100);
+ return sprintf('GMT%s%d', $offset >= 0 ? '+' : '', $offset / 100);
61
62
63
/**
0 commit comments