Fix doc comments

This commit is contained in:
Madhura Jayaratne 2012-09-02 19:36:07 +05:30
parent dec582c93c
commit 6dbdb95d9a
2 changed files with 5 additions and 2 deletions

View File

@ -175,7 +175,6 @@ class PMA_DbQbe
* Public Constructor
*
* @param string $db Database name
*
*/
public function __construct($db)
{
@ -1279,6 +1278,8 @@ class PMA_DbQbe
/**
* Provides the generated SQL query
*
* @param string $cfgRelation Relation Settings
*
* @return string SQL query
*/
private function _getSQLQuery($cfgRelation)
@ -1301,6 +1302,8 @@ class PMA_DbQbe
/**
* Provides the generated QBE form
*
* @param string $cfgRelation Relation Settings
*
* @return string QBE form
*/
public function getSelectionForm($cfgRelation)

View File

@ -181,7 +181,7 @@ function PMA_DBI_try_query($query, $link = null, $options = 0,
* Run multi query statement and return results
*
* @param string $multi_query multi query statement to execute
* @param mysqli $link mysqli object
* @param mysqli $link mysqli object
*
* @return mysqli_result collection | boolean(false)
*/