From: Sam Reed Date: Thu, 3 Feb 2011 23:09:42 +0000 (+0000) Subject: Few more return types X-Git-Tag: 1.31.0-rc.0~32218 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27votes%27%2C%20votes=%27waiting%27%29%20%7D%7D?a=commitdiff_plain;h=a15519fabcd14ac4d3e3a55f6fd9c907b9713897;p=lhc%2Fweb%2Fwiklou.git Few more return types --- diff --git a/includes/installer/DatabaseInstaller.php b/includes/installer/DatabaseInstaller.php index 75a0e5bac8..957ee511b3 100644 --- a/includes/installer/DatabaseInstaller.php +++ b/includes/installer/DatabaseInstaller.php @@ -465,6 +465,8 @@ abstract class DatabaseInstaller { /** * Get a standard install-user fieldset. + * + * @return String */ public function getInstallUserBox() { return @@ -487,6 +489,8 @@ abstract class DatabaseInstaller { * Get a standard web-user fieldset * @param $noCreateMsg String: Message to display instead of the creation checkbox. * Set this to false to show a creation checkbox. + * + * @return String */ public function getWebUserBox( $noCreateMsg = false ) { $s = Html::openElement( 'fieldset' ) . @@ -528,6 +532,8 @@ abstract class DatabaseInstaller { /** * Common function for databases that don't understand the MySQLish syntax of interwiki.sql. + * + * @return Status */ public function populateInterwikiTable() { $status = $this->getConnection();