1
0
mirror of synced 2025-02-10 17:29:27 +03:00

Merge pull request #6579 from Nek-/patch-1

Add string type as possible parameter for between
This commit is contained in:
Marco Pivetta 2017-08-18 04:33:04 +02:00 committed by GitHub
commit fda770700a

View File

@ -626,8 +626,8 @@ class Expr
* Creates an instance of BETWEEN() function, with the given argument. * Creates an instance of BETWEEN() function, with the given argument.
* *
* @param mixed $val Valued to be inspected by range values. * @param mixed $val Valued to be inspected by range values.
* @param integer $x Starting range value to be used in BETWEEN() function. * @param integer|string $x Starting range value to be used in BETWEEN() function.
* @param integer $y End point value to be used in BETWEEN() function. * @param integer|string $y End point value to be used in BETWEEN() function.
* *
* @return Expr\Func A BETWEEN expression. * @return Expr\Func A BETWEEN expression.
*/ */