Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Nov 9, 2023
1 parent b58d555 commit 7d89cc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/RequestInputParametersResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ public function dataParameters(): array
return [
[
['person' => PersonInput::class, 'simple' => SimpleRequestInput::class],
static fn(PersonInput $person, SimpleRequestInput $simple) => null
static fn(PersonInput $person, SimpleRequestInput $simple) => null,
],
[
['person' => PersonInput::class],
static fn(PersonInput $person, PureObject $object) => null
static fn(PersonInput $person, PureObject $object) => null,
],
[
['simple' => SimpleRequestInput::class],
static fn(PureObject|SimpleRequestInput $object, SimpleRequestInput $simple) => null
static fn(PureObject|SimpleRequestInput $object, SimpleRequestInput $simple) => null,
],
];
}
Expand Down

0 comments on commit 7d89cc8

Please sign in to comment.