8000 Cs fix · symfony/symfony@803bcf8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 803bcf8

Browse files
committed
Cs fix
1 parent dfa3243 commit 803bcf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Serializer/Normalizer/DateTimeNormalizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ public function denormalize(mixed $data, string $type, string $format = null, ar
8484
$timezone = $this->getTimezone($context);
8585

8686
if (\is_int($data) || \is_float($data)) {
87-
$data = match ($dateTimeFormat){
87+
$data = match ($dateTimeFormat) {
8888
'U' => sprintf('%d', $data),
8989
'U.u' => sprintf('%.6F', $data),
90-
default => $data
90+
default => $data,
9191
};
9292
}
9393

0 commit comments

Comments
 (0)
0