From f4583f3be85db6a393548b6e1ad8989ec770bf33 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Fri, 31 Oct 2008 15:46:16 +0000 Subject: #327480 follow-up by sun: Fix PHPDoc stuff. --- includes/database/database.inc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'includes/database/database.inc') diff --git a/includes/database/database.inc b/includes/database/database.inc index 91c5ea4cb..0f64dfb61 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -1674,15 +1674,15 @@ function db_column_exists($table, $column) { return Database::getActiveConnection()->schema()->columnExists($table, $column); } - /** - * Find all tables that are like the specified base table name. - * - * @param table_expression - * An SQL expression, for example simpletest% . BEWARE: this is not - * prefixed, the caller should take care of that. - * @return - * Array, both the keys and the values are the matching tables. - */ +/** + * Find all tables that are like the specified base table name. + * + * @param $table_expression + * An SQL expression, for example "simpletest%" (without the quotes). + * BEWARE: this is not prefixed, the caller should take care of that. + * @return + * Array, both the keys and the values are the matching tables. + */ function db_find_tables($table_expression) { return Database::getActiveConnection()->schema()->findTables($table_expression); } -- cgit v1.2.3