Skip to content

Commit e7ca47b

Browse files
committed
docs: Remove useless docs
1 parent 0e9fa5e commit e7ca47b

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/Database/QueryBuilder/Builder.php

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ public function having(string $column, string $operator, string $value): self
164164
/**
165165
* Adds a WHERE clause to the query.
166166
*
167-
* This method allows you to specify a condition for filtering results
168-
* based on a column, a comparison operator, and a value.
169-
*
170167
* @param string $column The name of the column to apply the condition on.
171168
* @param ComparisonOperator $comparisonOperator The operator to use for comparison (e.g., '=', '>', '<').
172169
* @param string $value The value to compare the column against.
@@ -183,9 +180,6 @@ public function where(string $column, ComparisonOperator $comparisonOperator, st
183180
/**
184181
* Adds an "OR WHERE" condition to the query.
185182
*
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-
*
189183
* @param string $column The name of the column to apply the condition on.
190184
* @param ComparisonOperator $comparisonOperator The comparison operator to use (e.g., '=', '!=', '<', '>').
191185
* @param string $value The value to compare the column against.
@@ -243,10 +237,6 @@ public function orWhereIn(string $column, array $values): self
243237
/**
244238
* Adds an "WHERE NOT IN" clause to the query.
245239
*
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-
*
250240
* @param string $column The name of the column to apply the condition to.
251241
* @param array $values An array of values to exclude from the column.
252242
*/
@@ -261,10 +251,6 @@ public function whereNotIn(string $column, array $values): self
261251
/**
262252
* Adds an "OR WHERE NOT IN" clause to the query.
263253
*
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-
*
268254
* @param string $column The name of the column to apply the condition to.
269255
* @param array $values An array of values to exclude from the column.
270256
*/

0 commit comments

Comments
 (0)