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

PHPBB3-11159
This commit is contained in:
Oleg Pudeyev 2012-10-29 14:57:27 -04:00
parent dc8052b5c0
commit 31781adf0c
5 changed files with 5 additions and 5 deletions

View file

@ -49,7 +49,7 @@ class phpbb_captcha_gd extends phpbb_default_captcha
}
}
public static function get_instance()
static public function get_instance()
{
$instance = new phpbb_captcha_gd();
return $instance;

View file

@ -39,7 +39,7 @@ class phpbb_captcha_gd_wave extends phpbb_default_captcha
}
}
public static function get_instance()
static public function get_instance()
{
return new phpbb_captcha_gd_wave();
}

View file

@ -39,7 +39,7 @@ class phpbb_captcha_nogd extends phpbb_default_captcha
}
}
public static function get_instance()
static public function get_instance()
{
$instance = new phpbb_captcha_nogd();
return $instance;

View file

@ -98,7 +98,7 @@ class phpbb_captcha_qa
/**
* API function
*/
public static function get_instance()
static public function get_instance()
{
$instance = new phpbb_captcha_qa();

View file

@ -54,7 +54,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
$this->response = request_var('recaptcha_response_field', '');
}
public static function get_instance()
static public function get_instance()
{
$instance = new phpbb_recaptcha();
return $instance;