@@ -221,7 +221,7 @@ |
||
| 221 | 221 | /** |
| 222 | 222 | * The ApiKey assigned to this server |
| 223 | 223 | * |
| 224 | - * @return \CachedModel|int|null|static |
|
| 224 | + * @return ApiKey |
|
| 225 | 225 | */ |
| 226 | 226 | public function getApiKey() |
| 227 | 227 | { |
@@ -269,6 +269,7 @@ discard block |
||
| 269 | 269 | * |
| 270 | 270 | * @param string $error The error string |
| 271 | 271 | * @param int $id The error ID |
| 272 | + * @param PDOException $previous |
|
| 272 | 273 | * |
| 273 | 274 | * @throws Exception |
| 274 | 275 | */ |
@@ -295,7 +296,7 @@ discard block |
||
| 295 | 296 | * |
| 296 | 297 | * Prevents PDO from being erroneously serialized |
| 297 | 298 | * |
| 298 | - * @return array The list of properties that should be serialized |
|
| 299 | + * @return string[] The list of properties that should be serialized |
|
| 299 | 300 | */ |
| 300 | 301 | public function __sleep() |
| 301 | 302 | { |
@@ -275,7 +275,7 @@ |
||
| 275 | 275 | * @param string $column The name of the column that should be tested |
| 276 | 276 | * @param array|mixed $possible_values List of acceptable values |
| 277 | 277 | * @param bool $negate Whether to search if the value of $column does NOT belong to the $possible_values array |
| 278 | - * @param string|string[] $select The name of the column(s) that the returned array should contain |
|
| 278 | + * @param string $select The name of the column(s) that the returned array should contain |
|
| 279 | 279 | * @param string $additional_query Additional parameters to be passed to the MySQL query (e.g. `WHERE id = 5`) |
| 280 | 280 | * @param string $table The database table which will be used for queries |
| 281 | 281 | * |