@@ -164,9 +164,6 @@ public function having(string $column, string $operator, string $value): self
164
164
/**
165
165
* Adds a WHERE clause to the query.
166
166
*
167
- * This method allows you to specify a condition for filtering results
168
- * based on a column, a comparison operator, and a value.
169
- *
170
167
* @param string $column The name of the column to apply the condition on.
171
168
* @param ComparisonOperator $comparisonOperator The operator to use for comparison (e.g., '=', '>', '<').
172
169
* @param string $value The value to compare the column against.
@@ -183,9 +180,6 @@ public function where(string $column, ComparisonOperator $comparisonOperator, st
183
180
/**
184
181
* Adds an "OR WHERE" condition to the query.
185
182
*
186
- * This method appends a condition to the query using the logical "OR" operator.
187
- * It allows specifying a column, a comparison operator, and a value to filter the results.
188
- *
189
183
* @param string $column The name of the column to apply the condition on.
190
184
* @param ComparisonOperator $comparisonOperator The comparison operator to use (e.g., '=', '!=', '<', '>').
191
185
* @param string $value The value to compare the column against.
@@ -243,10 +237,6 @@ public function orWhereIn(string $column, array $values): self
243
237
/**
244
238
* Adds an "WHERE NOT IN" clause to the query.
245
239
*
246
- * This method appends a condition to the query that checks if the values
247
- * in the specified column are not within the given array of values, using
248
- * an "OR" logical operator.
249
- *
250
240
* @param string $column The name of the column to apply the condition to.
251
241
* @param array $values An array of values to exclude from the column.
252
242
*/
@@ -261,10 +251,6 @@ public function whereNotIn(string $column, array $values): self
261
251
/**
262
252
* Adds an "OR WHERE NOT IN" clause to the query.
263
253
*
264
- * This method appends a condition to the query that checks if the values
265
- * in the specified column are not within the given array of values, using
266
- * an "OR" logical operator.
267
- *
268
254
* @param string $column The name of the column to apply the condition to.
269
255
* @param array $values An array of values to exclude from the column.
270
256
*/
0 commit comments