mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 05:18:52 +00:00
[ticket/11159] Static public is the currently approved order.
PHPBB3-11159
This commit is contained in:
parent
196ed8ef9f
commit
644662bc2c
5 changed files with 5 additions and 5 deletions
|
@ -25,7 +25,7 @@ class phpbb_captcha_factory
|
||||||
/**
|
/**
|
||||||
* return an instance of class $name in file $name_plugin.php
|
* return an instance of class $name in file $name_plugin.php
|
||||||
*/
|
*/
|
||||||
public static function get_instance($name)
|
static public function get_instance($name)
|
||||||
{
|
{
|
||||||
global $phpbb_root_path, $phpEx;
|
global $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
|
|
|
@ -162,7 +162,7 @@ class compress
|
||||||
*
|
*
|
||||||
* @return array Array of strings of available compression methods (.tar, .tar.gz, .zip, etc.)
|
* @return array Array of strings of available compression methods (.tar, .tar.gz, .zip, etc.)
|
||||||
*/
|
*/
|
||||||
public static function methods()
|
static public function methods()
|
||||||
{
|
{
|
||||||
$methods = array('.tar');
|
$methods = array('.tar');
|
||||||
$available_methods = array('.tar.gz' => 'zlib', '.tar.bz2' => 'bz2', '.zip' => 'zlib');
|
$available_methods = array('.tar.gz' => 'zlib', '.tar.bz2' => 'bz2', '.zip' => 'zlib');
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
class phpbb_ext_testext_cron_dummy_task extends phpbb_cron_task_base
|
class phpbb_ext_testext_cron_dummy_task extends phpbb_cron_task_base
|
||||||
{
|
{
|
||||||
public static $was_run = 0;
|
static public $was_run = 0;
|
||||||
|
|
||||||
public function get_name()
|
public function get_name()
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
class phpbb_cron_task_core_dummy_task extends phpbb_cron_task_base
|
class phpbb_cron_task_core_dummy_task extends phpbb_cron_task_base
|
||||||
{
|
{
|
||||||
public static $was_run = 0;
|
static public $was_run = 0;
|
||||||
|
|
||||||
public function get_name()
|
public function get_name()
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
class phpbb_cron_task_core_second_dummy_task extends phpbb_cron_task_base
|
class phpbb_cron_task_core_second_dummy_task extends phpbb_cron_task_base
|
||||||
{
|
{
|
||||||
public static $was_run = 0;
|
static public $was_run = 0;
|
||||||
|
|
||||||
public function get_name()
|
public function get_name()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue