Skip to content

Commit

Permalink
Fixed subscriber priority
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdhehvg committed Mar 27, 2024
1 parent 2faf0f2 commit 122d433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function getSubscribedEvents(): array
{
return [
KernelEvents::REQUEST => [
['deserializeRequestBody', 27],
['deserializeRequestBody', 6],
],
];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function testCanGetSubscribedEvents(): void
static::assertSame(
[
KernelEvents::REQUEST => [
['deserializeRequestBody', 27],
['deserializeRequestBody', 6],
],
],
$subscribedEvents
Expand Down

0 comments on commit 122d433

Please sign in to comment.