Skip to content

Commit

Permalink
remove return type to support older Doctrine versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkulhan committed Jun 21, 2024
1 parent e3c6fa8 commit 33dfa99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-access-kit/src/Persistence.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function toRow(object $object): array
return $row;
}

private function determineValueType(mixed $value): ParameterType
private function determineValueType(mixed $value)
{
return match (true) {
is_bool($value) => ParameterType::BOOLEAN,
Expand Down

0 comments on commit 33dfa99

Please sign in to comment.