Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-07-30 15:50:42 +0400
committerMichal Čihař <mcihar@suse.cz>2013-07-30 15:52:40 +0400
commit107a72786425cfb1a689e0fa54dd53d0d52b1455 (patch)
tree7fc6c6aefabe81d90a378c569325021cad520f5e /setup
parentba993f8a2de69a7e8d80372a998edff863bcb10a (diff)
Various coding style fixes
Diffstat (limited to 'setup')
-rw-r--r--setup/lib/ConfigGenerator.class.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/setup/lib/ConfigGenerator.class.php b/setup/lib/ConfigGenerator.class.php
index 8dc359bb7c..82bc940bbc 100644
--- a/setup/lib/ConfigGenerator.class.php
+++ b/setup/lib/ConfigGenerator.class.php
@@ -72,7 +72,7 @@ class ConfigGenerator
$ret .= self::_getVarExport($k, $cf->getDefault($k), $crlf);
}
}
- $ret .= '?>';
+ $ret .= '?' . '>';
return $ret;
}
@@ -108,7 +108,7 @@ class ConfigGenerator
/**
* Check whether $array is a continuous 0-based array
*
- * @param array $array
+ * @param array $array Array to check
*
* @return boolean
*/
@@ -125,8 +125,8 @@ class ConfigGenerator
/**
* Exports continuous 0-based array
*
- * @param array $array
- * @param string $crlf
+ * @param array $array Array to export
+ * @param string $crlf Newline string
*
* @return string
*/