Skip to content

Commit

Permalink
Fix type hint (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
cleeve authored May 23, 2023
1 parent 41d10ce commit 0d3da61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Foundation/AbstractDao.php
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ public function getId($forceArray = false)
* @return mixed data which can be serialized by <b>json_encode</b>,
* which is a value of any type other than a resource.
*/
public function jsonSerialize()
public function jsonSerialize(): mixed
{
return Objects::propertyValues($this);
}
Expand Down

0 comments on commit 0d3da61

Please sign in to comment.