Skip to content

Commit

Permalink
Merge branch '7.0' into 7.1
Browse files Browse the repository at this point in the history
* 7.0:
  add missing return type-hints
  Fix test
  • Loading branch information
xabbuh committed Apr 16, 2024
2 parents 333cfc8 + 7126dfd commit 915e61c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Fixtures/TestClassMagicGet.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __get(string $property)
}
}

public function __isset(string $property)
public function __isset(string $property): bool
{
return \in_array($property, ['magicProperty', 'constantMagicProperty'], true);
}
Expand Down

0 comments on commit 915e61c

Please sign in to comment.