Skip to content

Commit

Permalink
[doc block] - fix wrong doc block for getTableKeys() (#16787)
Browse files Browse the repository at this point in the history
fix wrong doc block for getTableKeys()
  • Loading branch information
alikon authored and zero-24 committed Jul 9, 2017
1 parent 0774500 commit ad85034
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libraries/joomla/database/driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -1273,16 +1273,16 @@ abstract public function getTableColumns($table, $typeOnly = true);
abstract public function getTableCreate($tables);

/**
* Retrieves field information about the given tables.
* Retrieves keys information about the given table.
*
* @param mixed $tables A table name or a list of table names.
* @param string $table The name of the table.
*
* @return array An array of keys for the table(s).
* @return array An array of keys for the table.
*
* @since 11.1
* @throws RuntimeException
*/
abstract public function getTableKeys($tables);
abstract public function getTableKeys($table);

/**
* Method to get an array of all tables in the database.
Expand Down

0 comments on commit ad85034

Please sign in to comment.