@@ -49,22 +49,22 @@ discard block |
||
49 | 49 | |
50 | 50 | public function whereEQ($field, $value, $table_name = null, $bindname = null) |
51 | 51 | { |
52 | - return $this->whereBindField($table_name, $field, self::$OP_EQ, $value, $bindname); |
|
52 | + return $this->whereBindField($table_name, $field, self::$OP_EQ, $value, $bindname); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | public function whereGT($field, $value, $table_name = null, $bindname = null) |
56 | 56 | { |
57 | - return $this->whereBindField($table_name, $field, self::$OP_GT, $value, $bindname); |
|
57 | + return $this->whereBindField($table_name, $field, self::$OP_GT, $value, $bindname); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | public function whereLT($field, $value, $table_name = null, $bindname = null) |
61 | 61 | { |
62 | - return $this->whereBindField($table_name, $field, self::$OP_LT, $value, $bindname); |
|
62 | + return $this->whereBindField($table_name, $field, self::$OP_LT, $value, $bindname); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | public function whereGTE($field, $value, $table_name = null, $bindname = null) |
66 | 66 | { |
67 | - return $this->whereBindField($table_name, $field, self::$OP_GTE, $value, $bindname); |
|
67 | + return $this->whereBindField($table_name, $field, self::$OP_GTE, $value, $bindname); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | public function whereLTE($field, $value, $table_name = null, $bindname = null) |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | * @param $filters_operator Object, inclusive or exclusive search |
172 | 172 | */ |
173 | 173 | |
174 | - // sub array filters[$content] |
|
174 | + // sub array filters[$content] |
|
175 | 175 | public function whereFilterContent($filters_content, $search_table = null, $filters_operator = null) |
176 | 176 | { |
177 | 177 | if (!isset($filters_content['term']) || !isset($filters_content['fields'])) { |