Skip to content

Commit

Permalink
Fixes CS
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Jul 23, 2022
1 parent b38cc22 commit f8acd80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ ubuntu-latest ]
php: [ 8.0, 8.1 ]
stability: [ prefer-lowest, prefer-stable ]
stability: [ prefer-stable ]

name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.0 ]
php: [ 8.1 ]
os: [ ubuntu-latest ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion src/PayloadSerializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function __construct(

public function serialize(Payload $payload): string
{
return $this->serializer->serialize($payload);
return (string) $this->serializer->serialize($payload);
}

public function unserialize(string $payload): Payload
Expand Down

0 comments on commit f8acd80

Please sign in to comment.