Skip to content

Commit fd67871

Browse files
committed
Fixed incorrect return change
Incorrectly made a modification to the return of the `where` method instead of the `whereGroup` method
1 parent cc7a8cd commit fd67871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ezQueryInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ public function limit($numberOf, $offset = null);
317317
* like('key/Field/Column', '_%')
318318
* notLike('key/Field/Column', '_%')
319319
*
320-
* @return mixed bool/string - WHERE SQL statement, or false on error
320+
* @return array modified conditions
321321
*/
322322
public function whereGroup(...$whereConditions);
323323

@@ -348,7 +348,7 @@ public function whereGroup(...$whereConditions);
348348
* between('key/Field/Column', $value, $value2)
349349
* notBetween('key/Field/Column', $value, $value2)
350350
*
351-
* @return array modified conditions
351+
* @return mixed bool/string - WHERE SQL statement, or false on error
352352
*/
353353
public function where(...$whereConditions);
354354

0 commit comments

Comments
 (0)