Skip to content

Commit

Permalink
add a ? to implicitly nullable parameter types to make them explicitl…
Browse files Browse the repository at this point in the history
…y nullable
  • Loading branch information
pavog committed Dec 20, 2024
1 parent 05e9d3d commit aae0068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/Generator/SQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function generate(Query $query): string
* @param WhereCondition|WhereGroup|null $where
* @return string
*/
private function generateWhere(Query $query, WhereCondition|WhereGroup $where = null): string
private function generateWhere(Query $query, WhereCondition|WhereGroup|null $where = null): string
{
if (!$where) {
$where = $query->getWhere();
Expand Down

0 comments on commit aae0068

Please sign in to comment.