@@ -21,7 +21,7 @@ trait Having
2121 use Where;
2222
2323 /**
24- * Appends a "AND $column $operator ...$values" condition in the HAVING clause.
24+ * Appends an "AND $column $operator ...$values" condition in the HAVING clause.
2525 *
2626 * @param Closure|string $column Closure for a subquery or a string with the column name
2727 * @param string $operator
@@ -55,7 +55,7 @@ public function orHaving(
5555 }
5656
5757 /**
58- * Appends a "AND $column = $value" condition in the HAVING clause.
58+ * Appends an "AND $column = $value" condition in the HAVING clause.
5959 *
6060 * @param Closure|string $column Closure for a subquery or a string with the column name
6161 * @param Closure|float|int|string|null $value
@@ -89,7 +89,7 @@ public function orHavingEqual(
8989 }
9090
9191 /**
92- * Appends a "AND $column != $value" condition in the HAVING clause.
92+ * Appends an "AND $column != $value" condition in the HAVING clause.
9393 *
9494 * @param Closure|string $column Closure for a subquery or a string with the column name
9595 * @param Closure|float|int|string|null $value
@@ -123,7 +123,7 @@ public function orHavingNotEqual(
123123 }
124124
125125 /**
126- * Appends a "AND $column <=> $value" condition in the HAVING clause.
126+ * Appends an "AND $column <=> $value" condition in the HAVING clause.
127127 *
128128 * @param Closure|string $column Closure for a subquery or a string with the column name
129129 * @param Closure|float|int|string|null $value
@@ -157,7 +157,7 @@ public function orHavingNullSafeEqual(
157157 }
158158
159159 /**
160- * Appends a "AND $column < $value" condition in the HAVING clause.
160+ * Appends an "AND $column < $value" condition in the HAVING clause.
161161 *
162162 * @param Closure|string $column Closure for a subquery or a string with the column name
163163 * @param Closure|float|int|string|null $value
@@ -191,7 +191,7 @@ public function orHavingLessThan(
191191 }
192192
193193 /**
194- * Appends a "AND $column <= $value" condition in the HAVING clause.
194+ * Appends an "AND $column <= $value" condition in the HAVING clause.
195195 *
196196 * @param Closure|string $column Closure for a subquery or a string with the column name
197197 * @param Closure|float|int|string|null $value
@@ -225,7 +225,7 @@ public function orHavingLessThanOrEqual(
225225 }
226226
227227 /**
228- * Appends a "AND $column > $value" condition in the HAVING clause.
228+ * Appends an "AND $column > $value" condition in the HAVING clause.
229229 *
230230 * @param Closure|string $column Closure for a subquery or a string with the column name
231231 * @param Closure|float|int|string|null $value
@@ -259,7 +259,7 @@ public function orHavingGreaterThan(
259259 }
260260
261261 /**
262- * Appends a "AND $column >= $value" condition in the HAVING clause.
262+ * Appends an "AND $column >= $value" condition in the HAVING clause.
263263 *
264264 * @param Closure|string $column Closure for a subquery or a string with the column name
265265 * @param Closure|float|int|string|null $value
@@ -293,7 +293,7 @@ public function orHavingGreaterThanOrEqual(
293293 }
294294
295295 /**
296- * Appends a "AND $column LIKE $value" condition in the HAVING clause.
296+ * Appends an "AND $column LIKE $value" condition in the HAVING clause.
297297 *
298298 * @param Closure|string $column Closure for a subquery or a string with the column name
299299 * @param Closure|float|int|string|null $value
@@ -327,7 +327,7 @@ public function orHavingLike(
327327 }
328328
329329 /**
330- * Appends a "AND $column NOT LIKE" $value condition.
330+ * Appends an "AND $column NOT LIKE" $value condition.
331331 *
332332 * @param Closure|string $column Closure for a subquery or a string with the column name
333333 * @param Closure|float|int|string|null $value
@@ -361,7 +361,7 @@ public function orHavingNotLike(
361361 }
362362
363363 /**
364- * Appends a "AND $column IN (...$values)" condition in the HAVING clause.
364+ * Appends an "AND $column IN (...$values)" condition in the HAVING clause.
365365 *
366366 * @param Closure|string $column Closure for a subquery or a string with the column name
367367 * @param Closure|float|int|string|null $value
@@ -399,7 +399,7 @@ public function orHavingIn(
399399 }
400400
401401 /**
402- * Appends a "AND $column NOT IN (...$values)" condition in the HAVING clause.
402+ * Appends an "AND $column NOT IN (...$values)" condition in the HAVING clause.
403403 *
404404 * @param Closure|string $column Closure for a subquery or a string with the column name
405405 * @param Closure|float|int|string|null $value
@@ -437,7 +437,7 @@ public function orHavingNotIn(
437437 }
438438
439439 /**
440- * Appends a "AND $column BETWEEN $min AND $max" condition in the HAVING clause.
440+ * Appends an "AND $column BETWEEN $min AND $max" condition in the HAVING clause.
441441 *
442442 * @param Closure|string $column Closure for a subquery or a string with the column name
443443 * @param Closure|float|int|string|null $min
@@ -475,7 +475,7 @@ public function orHavingBetween(
475475 }
476476
477477 /**
478- * Appends a "AND $column NOT BETWEEN $min AND $max" condition in the HAVING clause.
478+ * Appends an "AND $column NOT BETWEEN $min AND $max" condition in the HAVING clause.
479479 *
480480 * @param Closure|string $column Closure for a subquery or a string with the column name
481481 * @param Closure|float|int|string|null $min
@@ -513,7 +513,7 @@ public function orHavingNotBetween(
513513 }
514514
515515 /**
516- * Appends a "AND $column IS NULL" condition in the HAVING clause.
516+ * Appends an "AND $column IS NULL" condition in the HAVING clause.
517517 *
518518 * @param Closure|string $column Closure for a subquery or a string with the column name
519519 *
@@ -541,7 +541,7 @@ public function orHavingIsNull(Closure | string $column) : static
541541 }
542542
543543 /**
544- * Appends a "AND $column IS NOT NULL" condition in the HAVING clause.
544+ * Appends an "AND $column IS NOT NULL" condition in the HAVING clause.
545545 *
546546 * @param Closure|string $column Closure for a subquery or a string with the column name
547547 *
0 commit comments