Completed
Push — master ( ffbb02...68e5b2 )
by smiley
02:42
created
src/Query/UpdateInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -16,8 +16,19 @@
 block discarded – undo
16 16
  */
17 17
 interface UpdateInterface extends StatementInterface{
18 18
 
19
+	/**
20
+	 * @return void
21
+	 */
19 22
 	public function table();
23
+
24
+	/**
25
+	 * @return void
26
+	 */
20 27
 	public function set();
28
+
29
+	/**
30
+	 * @return UpdateInterface
31
+	 */
21 32
 	public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND');
22 33
 
23 34
 }
Please login to merge, or discard this patch.
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.