Skip to content

Commit aae0068

Browse files
committed
add a ? to implicitly nullable parameter types to make them explicitly nullable
1 parent 05e9d3d commit aae0068

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Query/Generator/SQL.php

+1-1
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)