Four more spaces, per r78759 CR

This commit is contained in:
Platonides 2010-12-22 00:06:14 +00:00
parent 29ba65c6ec
commit f65af64f5a
2 changed files with 2 additions and 2 deletions

View file

@ -820,7 +820,7 @@ class wikiFuzz {
* Returns the matched character slash-escaped as in a C string
* Helper for makeTitleSafe callback
*/
static private function stringEscape($matches) {
static private function stringEscape( $matches ) {
return sprintf( "\\x%02x", ord( $matches[1] ) );
}

View file

@ -323,7 +323,7 @@ class FiveUpgrade extends Maintenance {
/**
* Helper function for copyTable array_filter
*/
static private function notUpgradeNull($x) {
static private function notUpgradeNull( $x ) {
return $x !== MW_UPGRADE_NULL;
}