@@ -406,8 +406,6 @@ |
||
406 | 406 | |
407 | 407 | /** |
408 | 408 | * Creates a "Greater than or equal to" Query condition, equivalent to mysql >= operator |
409 | - * @param string $left the lhs of the condition |
|
410 | - * @param string|Array $right the rhs of the condition |
|
411 | 409 | * @return QueryCondition the query condition |
412 | 410 | */ |
413 | 411 | public static function In($needle, $haystack) |
@@ -16,6 +16,9 @@ |
||
16 | 16 | /* @var \PDO The list of subclauses that are combined by this predicate. */ |
17 | 17 | private $conditions; |
18 | 18 | |
19 | + /** |
|
20 | + * @param string $type |
|
21 | + */ |
|
19 | 22 | public function __construct($type, QueryExpression $left, QueryExpression ...$others) |
20 | 23 | { |
21 | 24 | switch ($type) { |