1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[ticket/11159] static public is the currently approved order.

PHPBB3-11159
This commit is contained in:
Oleg Pudeyev
2012-11-06 10:41:06 -05:00
parent fea118cf0d
commit a7babc211c
10 changed files with 19 additions and 19 deletions

View File

@@ -137,7 +137,7 @@ abstract class phpbb_database_test_case extends PHPUnit_Extensions_Database_Test
*
* @return string The string with the specified match converted to uppercase
*/
public static function to_upper($matches)
static public function to_upper($matches)
{
return $matches[1] . strtoupper($matches[2]) . $matches[3];
}