@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * Increment the value of an item in the cache. |
57 | 57 | * |
58 | 58 | * @param string $key |
59 | - * @param mixed $value |
|
59 | + * @param integer $value |
|
60 | 60 | * |
61 | 61 | * @return int|bool |
62 | 62 | */ |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * Decrement the value of an item in the cache. |
78 | 78 | * |
79 | 79 | * @param string $key |
80 | - * @param mixed $value |
|
80 | + * @param integer $value |
|
81 | 81 | * |
82 | 82 | * @return int|bool |
83 | 83 | */ |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
125 | - * @param $handler |
|
125 | + * @param resource $handler |
|
126 | 126 | * |
127 | 127 | * @throws \RuntimeException |
128 | 128 | */ |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | * @param string $query |
324 | 324 | * @param array $bindings |
325 | 325 | * |
326 | - * @return int|mixed |
|
326 | + * @return integer |
|
327 | 327 | */ |
328 | 328 | public function insert($query, $bindings = []) |
329 | 329 | { |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | } |
364 | 364 | |
365 | 365 | /** |
366 | - * @param $query |
|
366 | + * @param string $query |
|
367 | 367 | * @param array $bindings |
368 | 368 | * |
369 | 369 | * @return mixed |
@@ -524,7 +524,7 @@ discard block |
||
524 | 524 | } |
525 | 525 | |
526 | 526 | /** |
527 | - * @return \string[] |
|
527 | + * @return string[] |
|
528 | 528 | */ |
529 | 529 | public function metrics() |
530 | 530 | { |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | /** |
118 | 118 | * Specify a secondary index for the current bucket. |
119 | 119 | * |
120 | - * @param array $columns the JSON fields to index. |
|
120 | + * @param string[] $columns the JSON fields to index. |
|
121 | 121 | * @param string $name the name of the index. |
122 | 122 | * @param string $whereClause the WHERE clause of the index. |
123 | 123 | * @param boolean $ignoreIfExist if a secondary index already exists with that name, an exception will be |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
155 | - * @param $index |
|
155 | + * @param string|null $index |
|
156 | 156 | * |
157 | 157 | * @return string |
158 | 158 | */ |