@@ -58,7 +58,7 @@ |
||
| 58 | 58 | * Set table names SELECT query should be performed for. Table names can be provided with |
| 59 | 59 | * specified alias (AS construction). |
| 60 | 60 | * |
| 61 | - * @param array|string|mixed $tables Array of names, comma separated string or set of |
|
| 61 | + * @param string $tables Array of names, comma separated string or set of |
|
| 62 | 62 | * parameters. |
| 63 | 63 | * @return $this |
| 64 | 64 | */ |
@@ -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 |
@@ -126,7 +126,7 @@ |
||
| 126 | 126 | * |
| 127 | 127 | * @param array $columns Array of columns. |
| 128 | 128 | * @param array $rowsets Array of rowsets. |
| 129 | - * @return mixed |
|
| 129 | + * @return integer |
|
| 130 | 130 | */ |
| 131 | 131 | public function batchInsert(array $columns = [], array $rowsets = []) |
| 132 | 132 | { |
@@ -290,7 +290,7 @@ |
||
| 290 | 290 | /** |
| 291 | 291 | * Compile DISTINCT statement. |
| 292 | 292 | * |
| 293 | - * @param mixed $distinct Not every DBMS support distinct expression, only Postgres does. |
|
| 293 | + * @param boolean|string $distinct Not every DBMS support distinct expression, only Postgres does. |
|
| 294 | 294 | * |
| 295 | 295 | * @return string |
| 296 | 296 | */ |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * Every value has to wrapped with parameter interface. |
| 60 | 60 | * |
| 61 | - * @param array $parameters |
|
| 61 | + * @param ParameterInterface[] $parameters |
|
| 62 | 62 | * |
| 63 | 63 | * @return ParameterInterface[] |
| 64 | 64 | * |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | /** |
| 97 | 97 | * Get parameter value. |
| 98 | 98 | * |
| 99 | - * @param mixed $parameter |
|
| 99 | + * @param ParameterInterface $parameter |
|
| 100 | 100 | * |
| 101 | 101 | * @return string |
| 102 | 102 | */ |