Skip to content

Commit

Permalink
expose escapeLikeParameter trough query builder
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Appelman <robin@icewind.nl>
  • Loading branch information
icewind1991 committed May 22, 2024
1 parent 221883f commit bf11858
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/private/DB/QueryBuilder/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -1337,4 +1337,8 @@ public function quoteAlias($alias) {

return $this->helper->quoteColumnName($alias);
}

public function escapeLikeParameter(string $parameter): string {
return $this->connection->escapeLikeParameter($parameter);
}
}

0 comments on commit bf11858

Please sign in to comment.