@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ***************/ |
89 | 89 | |
90 | 90 | /** |
91 | - * @param int|string $offset |
|
91 | + * @param integer $offset |
|
92 | 92 | * |
93 | 93 | * @return bool |
94 | 94 | */ |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
100 | - * @param int|string $offset |
|
100 | + * @param integer $offset |
|
101 | 101 | * |
102 | 102 | * @return \chillerlan\Database\DBResultRow|mixed|null |
103 | 103 | */ |
@@ -199,7 +199,7 @@ |
||
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
202 | - * @param $stmt |
|
202 | + * @param PDOStatement $stmt |
|
203 | 203 | * @param string|null $index |
204 | 204 | * @param bool $assoc |
205 | 205 | * |
@@ -45,6 +45,10 @@ |
||
45 | 45 | abstract protected function __raw(string $sql, string $index = null, bool $assoc = true); |
46 | 46 | abstract protected function __prepared(string $sql, array $values = [], string $index = null, bool $assoc = true); |
47 | 47 | abstract protected function __multi(string $sql, array $values); |
48 | + |
|
49 | + /** |
|
50 | + * @param callable $callback |
|
51 | + */ |
|
48 | 52 | abstract protected function __multi_callback(string $sql, array $data, $callback); |
49 | 53 | |
50 | 54 | /** |
@@ -16,6 +16,9 @@ |
||
16 | 16 | */ |
17 | 17 | interface DeleteInterface extends StatementInterface{ |
18 | 18 | |
19 | + /** |
|
20 | + * @return void |
|
21 | + */ |
|
19 | 22 | public function from(); |
20 | 23 | public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND'):DeleteInterface; |
21 | 24 |
@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | /** |
51 | 51 | * @param $expr1 |
52 | - * @param null $expr2 |
|
52 | + * @param string|null $expr2 |
|
53 | 53 | * @param null $func |
54 | 54 | * |
55 | 55 | * @return void |
@@ -21,6 +21,9 @@ |
||
21 | 21 | */ |
22 | 22 | protected $where = []; |
23 | 23 | |
24 | + /** |
|
25 | + * @param string $operator |
|
26 | + */ |
|
24 | 27 | protected function _addWhere($val1, $val2 = null, $operator = null, $bind = true, $join = 'AND'){ |
25 | 28 | $operator = strtoupper(trim($operator)); |
26 | 29 | $join = strtoupper(trim($join)); |
@@ -14,8 +14,19 @@ |
||
14 | 14 | |
15 | 15 | interface UpdateInterface extends StatementInterface{ |
16 | 16 | |
17 | + /** |
|
18 | + * @return void |
|
19 | + */ |
|
17 | 20 | public function table(); |
21 | + |
|
22 | + /** |
|
23 | + * @return void |
|
24 | + */ |
|
18 | 25 | public function set(); |
26 | + |
|
27 | + /** |
|
28 | + * @return UpdateAbstract |
|
29 | + */ |
|
19 | 30 | public function where($val1, $val2, $operator = '=', $bind = true, $join = 'AND'); |
20 | 31 | |
21 | 32 | } |