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 Aug 23, 2024
1 parent 0cab17b commit 658d2f7
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 @@ -1336,4 +1336,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 658d2f7

Please sign in to comment.