Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  Make more nullable types explicit
  Add more explicit nullable types for default null values
  • Loading branch information
derrabus committed Mar 19, 2024
2 parents 4053ede + 64db1c1 commit 46a4cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Fixtures/ClassWithAnnotatedParameters.php
Expand Up @@ -14,14 +14,14 @@ public function fooMethod(string $foo)
/**
* @param string $bar parameter not implemented yet
*/
public function barMethod(/* string $bar = null */)
public function barMethod(/* ?string $bar = null */)
{
}

/**
* @param Quz $quz parameter not implemented yet
*/
public function quzMethod(/* Quz $quz = null */)
public function quzMethod(/* ?Quz $quz = null */)
{
}

Expand Down

0 comments on commit 46a4cc1

Please sign in to comment.