Completed
Push — v2 ( f2454a...37876c )
by Berend
02:39
created
src/Query.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -406,8 +406,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/QueryPredicate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.