Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml → .github/workflows/backend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
php:
- '8.3'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand All @@ -43,11 +43,11 @@ jobs:
matrix:
php:
- '7.4'
- '8.0'
- '8.3'
- '8.4'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -95,11 +95,11 @@ jobs:
matrix:
php:
- '7.4'
- '8.0'
- '8.3'
- '8.4'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -157,11 +157,11 @@ jobs:
matrix:
php:
- '7.4'
- '8.0'
- '8.3'
- '8.4'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -215,11 +215,11 @@ jobs:
matrix:
php:
- '7.4'
- '8.0'
- '8.3'
- '8.4'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup PHP Action
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions/setup-node@v2
with:
node-version: '14'
Expand Down
1 change: 1 addition & 0 deletions src/bundle/Serializer/Normalizer/LockKeyNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public function normalize($data, ?string $format = null, array $context = []): a
{
assert($data instanceof Key);

/** @var array<string, mixed> */
return Closure::bind(fn (): array => array_intersect_key(
get_object_vars($this),
/** @phpstan-ignore-next-line argument.type */
Expand Down
Loading