Add string type as possible parameter for between
People may want to enter a date, or simply the parameter name. Linter may report an error while it's a good usage.
This commit is contained in:
parent
84079572f7
commit
03d33ec900
@ -625,9 +625,9 @@ 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.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user