Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Jan 24, 2024
1 parent 0c70466 commit a0a5b94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Fixtures/Integration/misc/PHP7_1.test
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface Contract

class Implementation implements Contract
{
public function method(Foo $foo = null): ?bool
public function method(?Foo $foo = null): ?bool
{
return is_null($foo);
}
Expand Down Expand Up @@ -61,7 +61,7 @@ interface Contract {
}

class Implementation implements Contract {
public function method(?Foo $foo = null): ?bool
public function method(Foo $foo = null): ?bool
{
return is_null($foo);
}
Expand Down

0 comments on commit a0a5b94

Please sign in to comment.