summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-31 15:46:16 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2008-10-31 15:46:16 +0000
commitf4583f3be85db6a393548b6e1ad8989ec770bf33 (patch)
tree9a1cf80dca3e6861a9006382fe28f74acf7bdff5
parentf45a9dabc3e5e630e4dd295c4a9696b7e5056d16 (diff)
downloadbrdo-f4583f3be85db6a393548b6e1ad8989ec770bf33.tar.gz
brdo-f4583f3be85db6a393548b6e1ad8989ec770bf33.tar.bz2
#327480 follow-up by sun: Fix PHPDoc stuff.
-rw-r--r--includes/database/database.inc18
-rw-r--r--includes/database/schema.inc2
2 files changed, 10 insertions, 10 deletions
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);
}
diff --git a/includes/database/schema.inc b/includes/database/schema.inc
index 391db547c..7a8e64e7d 100644
--- a/includes/database/schema.inc
+++ b/includes/database/schema.inc
@@ -408,7 +408,7 @@ abstract class DatabaseSchema {
/**
* Find all tables that are like the specified base table name.
*
- * @param table_expression
+ * @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