@@ -16,8 +16,19 @@ |
||
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 | } |
@@ -16,8 +16,15 @@ |
||
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 | } |