From 64fddc4c6ef87b47945062b01da901c180c8b4f1 Mon Sep 17 00:00:00 2001 From: "Ann + J.M" Date: Wed, 2 Jul 2014 21:28:39 +0200 Subject: [PATCH] Fix PHPDoc param types for PMA_executeQueryAndSendQueryResponse Signed-off-by: Ann + J.M --- libraries/sql.lib.php | 50 +++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index 7c2fd25407..62d601d097 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -1431,7 +1431,7 @@ function PMA_countQueryResults( false ); /** - * @todo Can we know at this point that this is InnoDB, + * @todo Can we know at this point that this is InnoDB, * (in this case there would be no need for getting * an exact count)? */ @@ -1440,7 +1440,7 @@ function PMA_countQueryResults( // is less than MaxExactCount /** * @todo In countRecords(), MaxExactCount is also verified, - * so can we avoid checking it twice? + * so can we avoid checking it twice? */ $unlim_num_rows = PMA_Table::countRecords( $db, @@ -2289,29 +2289,29 @@ function PMA_sendQueryResponse($num_rows, $unlim_num_rows, $is_affected, /** * Function to execute the query and send the response * - * @param array $analyzed_sql_results analysed sql results - * @param bool $is_gotofile whether goto file or not - * @param string $db current database - * @param string $table current table - * @param bool $find_real_end whether to find real end or not - * @param string $sql_query_for_bookmark the sql query to be stored as bookmark - * @param array $extra_data extra data - * @param bool $is_affected whether affected or not - * @param string $message_to_show message to show - * @param string $disp_mode display mode - * @param string $message message - * @param array $sql_data sql data - * @param string $goto goto page url - * @param string $pmaThemeImage uri of the PMA theme image - * @param string $disp_query display query - * @param string $disp_message display message - * @param string $query_type query type - * @param string $sql_query sql query - * @param array $selectedTables array of table names selected from the - * database structure page, for an action - * like check table, optimize table, - * analyze table or repair table - * @param string $complete_query complete query + * @param array $analyzed_sql_results analysed sql results + * @param bool $is_gotofile whether goto file or not + * @param string $db current database + * @param string $table current table + * @param bool|null $find_real_end whether to find real end or not + * @param string $sql_query_for_bookmark the sql query to be stored as bookmark + * @param array|null $extra_data extra data + * @param bool $is_affected whether affected or not + * @param string $message_to_show message to show + * @param string $disp_mode display mode + * @param string $message message + * @param array|null $sql_data sql data + * @param string $goto goto page url + * @param string $pmaThemeImage uri of the PMA theme image + * @param string $disp_query display query + * @param string $disp_message display message + * @param string $query_type query type + * @param string $sql_query sql query + * @param array $selectedTables array of table names selected from the + * database structure page, for an action + * like check table, optimize table, + * analyze table or repair table + * @param string $complete_query complete query * * @return void */