Passed
Push — v2 ( 3f2240 )
by Berend
04:06
created
src/QueryCondition.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
 	private $binding;
20 20
 
21
+	/**
22
+	 * @param string $operator
23
+	 */
21 24
 	public function __construct($left, $operator, $right)
22 25
 	{
23 26
 		$this->leftOperand = $left;
Please login to merge, or discard this patch.
src/QueryPredicate.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 
15 15
 	private $conditions;
16 16
 
17
+	/**
18
+	 * @param string $type
19
+	 */
17 20
 	public function __construct($type, QueryExpression $left, QueryExpression ...$others)
18 21
 	{
19 22
 		switch ($type) {
Please login to merge, or discard this patch.