From: Reedy Date: Thu, 1 Dec 2016 21:32:09 +0000 (+0000) Subject: IDatabase::delete() table name parameter should be a string X-Git-Tag: 1.31.0-rc.0~4698 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=9a05e34a1072228fe2ad4068115b07295b02b77e;p=lhc%2Fweb%2Fwiklou.git IDatabase::delete() table name parameter should be a string Change-Id: I7ba2cdb6cdddf04819ff80e27814f704f41d15f1 --- diff --git a/includes/libs/rdbms/database/IDatabase.php b/includes/libs/rdbms/database/IDatabase.php index 48d76c4023..c6055dbdbd 100644 --- a/includes/libs/rdbms/database/IDatabase.php +++ b/includes/libs/rdbms/database/IDatabase.php @@ -1183,7 +1183,7 @@ interface IDatabase { /** * DELETE query wrapper. * - * @param array $table Table name + * @param string $table Table name * @param string|array $conds Array of conditions. See $conds in IDatabase::select() * for the format. Use $conds == "*" to delete all rows * @param string $fname Name of the calling function