@@ -346,7 +346,7 @@ |
||
| 346 | 346 | * @param string $joiner Boolean joiner (AND | OR). |
| 347 | 347 | * @param array $parameters Set of parameters collected from where functions. |
| 348 | 348 | * @param array $tokens Array to aggregate compiled tokens. Reference. |
| 349 | - * @param \Closure|null|callable $wrapper Callback or closure used to wrap/collect every |
|
| 349 | + * @param callable $wrapper Callback or closure used to wrap/collect every |
|
| 350 | 350 | * potential parameter. |
| 351 | 351 | * |
| 352 | 352 | * @throws BuilderException |
@@ -228,7 +228,7 @@ |
||
| 228 | 228 | * Execute statement. |
| 229 | 229 | * |
| 230 | 230 | * @param string $statement |
| 231 | - * @param array $parameters |
|
| 231 | + * @param string[] $parameters |
|
| 232 | 232 | * @return \PDOStatement |
| 233 | 233 | */ |
| 234 | 234 | protected function run($statement, array $parameters = []) |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * |
| 95 | 95 | * @param string|\MongoId $id Primary key value. |
| 96 | 96 | * |
| 97 | - * @return CompositableInterface|Document|null |
|
| 97 | + * @return CompositableInterface|null |
|
| 98 | 98 | */ |
| 99 | 99 | public function findByPK($id) |
| 100 | 100 | { |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | * @param array $query Fields and conditions to query by. |
| 108 | 108 | * @param array $sortBy Always specify sort by to ensure that results are stable. |
| 109 | 109 | * |
| 110 | - * @return CompositableInterface|Document|null |
|
| 110 | + * @return CompositableInterface|null |
|
| 111 | 111 | */ |
| 112 | 112 | public function findOne(array $query = [], array $sortBy = []) |
| 113 | 113 | { |
@@ -108,8 +108,8 @@ |
||
| 108 | 108 | * @see AbstractWhere |
| 109 | 109 | * |
| 110 | 110 | * @param string|mixed $identifier Column or expression. |
| 111 | - * @param mixed $variousA Operator or value. |
|
| 112 | - * @param mixed $variousB Value, if operator specified. |
|
| 111 | + * @param string $variousA Operator or value. |
|
| 112 | + * @param Parameter $variousB Value, if operator specified. |
|
| 113 | 113 | * @param mixed $variousC Required only in between statements. |
| 114 | 114 | * |
| 115 | 115 | * @return self|$this |
@@ -267,7 +267,6 @@ |
||
| 267 | 267 | /** |
| 268 | 268 | * Create relation specific select query. |
| 269 | 269 | * |
| 270 | - * @param array $references List of parent key values aggregates while parsing. |
|
| 271 | 270 | * |
| 272 | 271 | * @return SelectQuery |
| 273 | 272 | */ |