Index: trunk/phase3/maintenance/fuzz-tester.php |
— | — | @@ -820,7 +820,7 @@ |
821 | 821 | * Returns the matched character slash-escaped as in a C string |
822 | 822 | * Helper for makeTitleSafe callback |
823 | 823 | */ |
824 | | - static private function stringEscape($matches) { |
| 824 | + static private function stringEscape( $matches ) { |
825 | 825 | return sprintf( "\\x%02x", ord( $matches[1] ) ); |
826 | 826 | } |
827 | 827 | |
Index: trunk/phase3/maintenance/upgrade1_5.php |
— | — | @@ -323,7 +323,7 @@ |
324 | 324 | /** |
325 | 325 | * Helper function for copyTable array_filter |
326 | 326 | */ |
327 | | - static private function notUpgradeNull($x) { |
| 327 | + static private function notUpgradeNull( $x ) { |
328 | 328 | return $x !== MW_UPGRADE_NULL; |
329 | 329 | } |
330 | 330 | |