summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2015-01-07 12:19:48 +0100
committerAndreas Gohr <andi@splitbrain.org>2015-01-07 12:19:48 +0100
commit8552954b29e133ddab7f6b0d1dff7a77d40a5452 (patch)
tree860d84c87c9641c383b8408fa48cca2cf3b43378
parent51b257b6019e01c05118fc3c93cb3ca60152076d (diff)
parent48c11be06e2cde2557957efc5571c9754ebf188f (diff)
downloadrpg-8552954b29e133ddab7f6b0d1dff7a77d40a5452.tar.gz
rpg-8552954b29e133ddab7f6b0d1dff7a77d40a5452.tar.bz2
Merge pull request #995 from splitbrain/scrutinizer-patch-1
Scrutinizer Auto-Fixes
-rw-r--r--lib/plugins/config/settings/config.class.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/plugins/config/settings/config.class.php b/lib/plugins/config/settings/config.class.php
index 378b93880..316cc2c59 100644
--- a/lib/plugins/config/settings/config.class.php
+++ b/lib/plugins/config/settings/config.class.php
@@ -487,7 +487,7 @@ if (!class_exists('setting')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
public function html(&$plugin, $echo=false) {
$disable = '';
@@ -712,7 +712,7 @@ if (!class_exists('setting_array')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
function html(&$plugin, $echo=false) {
$disable = '';
@@ -748,7 +748,7 @@ if (!class_exists('setting_string')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
function html(&$plugin, $echo=false) {
$disable = '';
@@ -809,7 +809,7 @@ if (!class_exists('setting_password')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
function html(&$plugin, $echo=false) {
@@ -990,7 +990,7 @@ if (!class_exists('setting_onoff')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
function html(&$plugin, $echo = false) {
$disable = '';
@@ -1044,7 +1044,7 @@ if (!class_exists('setting_multichoice')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
function html(&$plugin, $echo = false) {
$disable = '';
@@ -1243,7 +1243,7 @@ if (!class_exists('setting_multicheckbox')) {
*
* @param DokuWiki_Plugin $plugin object of config plugin
* @param bool $echo true: show inputted value, when error occurred, otherwise the stored setting
- * @return array with content array(string $label_html, string $input_html)
+ * @return string[] with content array(string $label_html, string $input_html)
*/
function html(&$plugin, $echo=false) {