From 07135876aecb2dd317a87e7f1658e14a2cc9e634 Mon Sep 17 00:00:00 2001 From: Jose Lorenzo Rodriguez Date: Sun, 26 Oct 2014 21:31:21 +0100 Subject: [PATCH] Fixing doc block --- src/Database/Expression/BetweenExpression.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Database/Expression/BetweenExpression.php b/src/Database/Expression/BetweenExpression.php index a4385449691..b843d432939 100644 --- a/src/Database/Expression/BetweenExpression.php +++ b/src/Database/Expression/BetweenExpression.php @@ -55,8 +55,10 @@ class BetweenExpression implements ExpressionInterface { /** * Constructor * - * @param mixed $value the value to use as the operand for the expression - * @param int $mode either UnaryExpression::PREFIX or UnaryExpression::POSTFIX + * @param mixed $field The field name to compare for values in between the rage + * @param mixed $from The initial value of the range + * @param mixed $to The ending value in the comparison range + * @param string $type The data type name to bind the values with */ public function __construct($field, $from, $to, $type = null) { $this->_field = $field;