Skip to content

Commit c95fe6f

Browse files
committed
code style fix
1 parent efa9bc8 commit c95fe6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/JsonSerializer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function serialize(array $payload): string
3232

3333
return $encoded;
3434
}
35-
catch(\Throwable $throwable)
35+
catch (\Throwable $throwable)
3636
{
3737
throw new SerializationFailed(
3838
\sprintf('JSON serialize failed: %s', $throwable->getMessage()),
@@ -54,7 +54,7 @@ public function unserialize(string $content): array
5454

5555
return $decoded;
5656
}
57-
catch(\Throwable $throwable)
57+
catch (\Throwable $throwable)
5858
{
5959
throw new UnserializeFailed(
6060
\sprintf('JSON unserialize failed: %s', $throwable->getMessage()),

0 commit comments

Comments
 (0)