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.
2 parents e62efe3 + 834ba2a commit d305c0cCopy full SHA for d305c0c
DateFormatter/DateFormat/TimezoneTransformer.php
@@ -59,7 +59,7 @@ public function format(\DateTime $dateTime, int $length): string
59
return $dateTime->format('\G\M\TP');
60
}
61
62
- return sprintf('GMT%s%d', ($offset >= 0 ? '+' : ''), $offset / 100);
+ return sprintf('GMT%s%d', $offset >= 0 ? '+' : '', $offset / 100);
63
64
65
/**
0 commit comments