Skip to content

Commit 834ba2a

Browse files
committed
Fix CS
1 parent 3528370 commit 834ba2a

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
@@ -57,7 +57,7 @@ public function format(\DateTime $dateTime, int $length): string
5757
return $dateTime->format('\G\M\TP');
5858
}
5959

60-
return sprintf('GMT%s%d', ($offset >= 0 ? '+' : ''), $offset / 100);
60+
return sprintf('GMT%s%d', $offset >= 0 ? '+' : '', $offset / 100);
6161
}
6262

6363
/**

0 commit comments

Comments
 (0)