diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
commit | 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 (patch) | |
tree | 577a29fb579188d16003a209ce2a2e9c5b0aa2bd /includes/installer/CliInstaller.php | |
parent | cacc939b34e315b85e2d72997811eb6677996cc1 (diff) |
Update to MediaWiki 1.21.1
Diffstat (limited to 'includes/installer/CliInstaller.php')
-rw-r--r-- | includes/installer/CliInstaller.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/installer/CliInstaller.php b/includes/installer/CliInstaller.php index 38b4a824..bb7e8776 100644 --- a/includes/installer/CliInstaller.php +++ b/includes/installer/CliInstaller.php @@ -129,7 +129,7 @@ class CliInstaller extends Installer { /** * Write LocalSettings.php to a given path * - * @param $path String Full path to write LocalSettings.php to + * @param string $path Full path to write LocalSettings.php to */ public function writeConfigurationFile( $path ) { $ls = InstallerOverrides::getLocalSettingsGenerator( $this ); @@ -191,9 +191,9 @@ class CliInstaller extends Installer { } } - public function envCheckPath( ) { + public function envCheckPath() { if ( !$this->specifiedScriptPath ) { - $this->showMessage( 'config-no-cli-uri', $this->getVar("wgScriptPath") ); + $this->showMessage( 'config-no-cli-uri', $this->getVar( "wgScriptPath" ) ); } return parent::envCheckPath(); } |