Skip to content

Commit

Permalink
Merge pull request #995 from splitbrain/scrutinizer-patch-1
Browse files Browse the repository at this point in the history
Scrutinizer Auto-Fixes
  • Loading branch information
splitbrain committed Jan 7, 2015
2 parents 51b257b + 48c11be commit 8552954
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/plugins/config/settings/config.class.php
Expand Up @@ -487,7 +487,7 @@ public function update($input) {
*
* @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 = '';
Expand Down Expand Up @@ -712,7 +712,7 @@ function out($var, $fmt='php') {
*
* @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 = '';
Expand Down Expand Up @@ -748,7 +748,7 @@ class setting_string extends 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)
*/
function html(&$plugin, $echo=false) {
$disable = '';
Expand Down Expand Up @@ -809,7 +809,7 @@ function update($input) {
*
* @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) {

Expand Down Expand Up @@ -990,7 +990,7 @@ class setting_onoff extends setting_numeric {
*
* @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 = '';
Expand Down Expand Up @@ -1044,7 +1044,7 @@ class setting_multichoice extends 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 = '';
Expand Down Expand Up @@ -1243,7 +1243,7 @@ function update($input) {
*
* @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) {

Expand Down

0 comments on commit 8552954

Please sign in to comment.