diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-06 16:43:48 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-06 16:43:48 -0500 |
commit | 644662bc2cee77de5e43134635b82fe5acd03538 (patch) | |
tree | 941995cf59ffe69c798797e92c8bdac9ea137824 /tests/cron/includes | |
parent | 196ed8ef9f063eb4293e740725d1f1c31276fed9 (diff) | |
download | forums-644662bc2cee77de5e43134635b82fe5acd03538.tar forums-644662bc2cee77de5e43134635b82fe5acd03538.tar.gz forums-644662bc2cee77de5e43134635b82fe5acd03538.tar.bz2 forums-644662bc2cee77de5e43134635b82fe5acd03538.tar.xz forums-644662bc2cee77de5e43134635b82fe5acd03538.zip |
[ticket/11159] Static public is the currently approved order.
PHPBB3-11159
Diffstat (limited to 'tests/cron/includes')
-rw-r--r-- | tests/cron/includes/cron/task/core/dummy_task.php | 2 | ||||
-rw-r--r-- | tests/cron/includes/cron/task/core/second_dummy_task.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/cron/includes/cron/task/core/dummy_task.php b/tests/cron/includes/cron/task/core/dummy_task.php index ce3e91a9ba..c94455603f 100644 --- a/tests/cron/includes/cron/task/core/dummy_task.php +++ b/tests/cron/includes/cron/task/core/dummy_task.php @@ -9,7 +9,7 @@ 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() { diff --git a/tests/cron/includes/cron/task/core/second_dummy_task.php b/tests/cron/includes/cron/task/core/second_dummy_task.php index 76a55588f9..77ef6f70ed 100644 --- a/tests/cron/includes/cron/task/core/second_dummy_task.php +++ b/tests/cron/includes/cron/task/core/second_dummy_task.php @@ -9,7 +9,7 @@ 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() { |