diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php
index d1196a5b46..878d4fd53a 100644
--- a/libraries/operations.lib.php
+++ b/libraries/operations.lib.php
@@ -26,11 +26,13 @@ function PMA_getHtmlForDatabaseComment($db)
. '
'
. '
'
@@ -288,7 +301,9 @@ function PMA_runProcedureAndFunctionDefinitions($db)
if ($procedure_names) {
foreach ($procedure_names as $procedure_name) {
PMA_DBI_select_db($db);
- $tmp_query = PMA_DBI_get_definition($db, 'PROCEDURE', $procedure_name);
+ $tmp_query = PMA_DBI_get_definition(
+ $db, 'PROCEDURE', $procedure_name
+ );
// collect for later display
$GLOBALS['sql_query'] .= "\n" . $tmp_query;
PMA_DBI_select_db($_REQUEST['newname']);
@@ -349,15 +364,17 @@ function PMA_getSqlQueryAndCreateDbBeforeCopy()
}
/**
- * remove all foreign key constraints and return sql constraints query for full database
+ * remove all foreign key constraints and return
+ * sql constraints query for full database
*
* @param array $tables_full array of all tables in given db or dbs
* @param instance $export_sql_plugin export plugin instance
* @param boolean $move whether databse name is empty or not
* @param $db database name
*/
-function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $move, $db)
-{
+function PMA_getSqlConstraintsQueryForFullDb(
+ $tables_full, $export_sql_plugin, $move, $db
+) {
$sql_constraints_query_full_db = array();
foreach ($tables_full as $each_table => $tmp) {
$sql_constraints = '';
@@ -385,8 +402,9 @@ function PMA_getSqlConstraintsQueryForFullDb($tables_full, $export_sql_plugin, $
*
* @return array $views
*/
-function PMA_getViewsAndCreateSqlViewStandIn($tables_full, $export_sql_plugin, $db)
-{
+function PMA_getViewsAndCreateSqlViewStandIn(
+ $tables_full, $export_sql_plugin, $db
+) {
$views = array();
foreach ($tables_full as $each_table => $tmp) {
// to be able to rename a db containing views,
@@ -589,13 +607,16 @@ function PMA_getHtmlForOrderTheTable($columns)
$html_output .= '