Skip to content

Commit

Permalink
feat: 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 Jun 27, 2024
1 parent a184161 commit c68ad52
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 @@ -1314,4 +1314,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 c68ad52

Please sign in to comment.