Skip to content

Commit b4fba6e

Browse files
authored
Merge pull request #13 from pavog/php-84
PHP 8.4 compatability: Make parameter types explicitly nullable
2 parents 05e9d3d + aae0068 commit b4fba6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Query/Generator/SQL.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function generate(Query $query): string
112112
* @param WhereCondition|WhereGroup|null $where
113113
* @return string
114114
*/
115-
private function generateWhere(Query $query, WhereCondition|WhereGroup $where = null): string
115+
private function generateWhere(Query $query, WhereCondition|WhereGroup|null $where = null): string
116116
{
117117
if (!$where) {
118118
$where = $query->getWhere();

0 commit comments

Comments
 (0)