aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-11-08 23:57:33 +0100
committerAndreas Fischer <bantu@phpbb.com>2012-11-08 23:57:33 +0100
commit5d37c171c2c47be5e718b9a5e961a365c8f02f19 (patch)
tree229e0fd022b6d275ceffcea4ee8ca312fa87bf9f /tests
parentfc41b52cea379835b12950d4bdef2ca5c0d11246 (diff)
parent644662bc2cee77de5e43134635b82fe5acd03538 (diff)
downloadforums-5d37c171c2c47be5e718b9a5e961a365c8f02f19.tar
forums-5d37c171c2c47be5e718b9a5e961a365c8f02f19.tar.gz
forums-5d37c171c2c47be5e718b9a5e961a365c8f02f19.tar.bz2
forums-5d37c171c2c47be5e718b9a5e961a365c8f02f19.tar.xz
forums-5d37c171c2c47be5e718b9a5e961a365c8f02f19.zip
Merge remote-tracking branch 'p/ticket/11159' into develop
* p/ticket/11159: [ticket/11159] Static public is the currently approved order.
Diffstat (limited to 'tests')
-rw-r--r--tests/cron/ext/testext/cron/dummy_task.php2
-rw-r--r--tests/cron/includes/cron/task/core/dummy_task.php2
-rw-r--r--tests/cron/includes/cron/task/core/second_dummy_task.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/cron/ext/testext/cron/dummy_task.php b/tests/cron/ext/testext/cron/dummy_task.php
index a31806c1b1..3e81db1895 100644
--- a/tests/cron/ext/testext/cron/dummy_task.php
+++ b/tests/cron/ext/testext/cron/dummy_task.php
@@ -9,7 +9,7 @@
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()
{
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()
{