Completed
Push — master ( 68e5b2...8089c4 )
by smiley
02:27
created
tests/Query/QueryTestInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -16,8 +16,15 @@
 block discarded – undo
16 16
  */
17 17
 interface QueryTestInterface{
18 18
 
19
+	/**
20
+	 * @return void
21
+	 */
19 22
 	public function testInstance();
20 23
 	public function testCreateDatabase();
24
+
25
+	/**
26
+	 * @return void
27
+	 */
21 28
 	public function testCreateDatabaseNoName();
22 29
 
23 30
 }
Please login to merge, or discard this patch.
src/Query/UpdateAbstract.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -25,6 +25,10 @@
 block discarded – undo
25 25
 	}
26 26
 
27 27
 	// -> *WhereTrait
28
+
29
+	/**
30
+	 * @param string $operator
31
+	 */
28 32
 	abstract protected function _addWhere($val1, $val2 = null, $operator = null, $bind = true, $join = 'AND');
29 33
 	abstract protected function _openBracket($join = null);
30 34
 	abstract protected function _closeBracket();
Please login to merge, or discard this patch.