From a15519fabcd14ac4d3e3a55f6fd9c907b9713897 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Thu, 3 Feb 2011 23:09:42 +0000 Subject: [PATCH] Few more return types --- includes/installer/DatabaseInstaller.php | 6 ++++++ 1 file changed, 6 insertions(+) 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(); -- 2.20.1