Skip to content

Commit be7ce77

Browse files
committed
Fix _like_statement from private to protected
1 parent fe90c7e commit be7ce77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Database/BaseBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ protected function _like($field, string $match = '', string $type = 'AND ', stri
10241024
*
10251025
* @return string $like_statement
10261026
*/
1027-
private function _like_statement(string $prefix = null, string $column, string $not = null, string $bind, bool $insensitiveSearch = false): string
1027+
protected function _like_statement(string $prefix = null, string $column, string $not = null, string $bind, bool $insensitiveSearch = false): string
10281028
{
10291029
$like_statement = "{$prefix} {$column} {$not} LIKE :{$bind}:";
10301030

0 commit comments

Comments
 (0)