diff options
author | LEZY Thomas <thomas.gif.91@gmail.com> | 2014-05-28 18:19:46 +0200 |
---|---|---|
committer | LEZY Thomas <thomas.gif.91@gmail.com> | 2014-05-28 18:19:46 +0200 |
commit | 18875894ec046e48e8627a9c1b2158670eea70e9 (patch) | |
tree | 3748d60b83e0a1fee67c6684ac40b523fd24128b /tests/console/cron/tasks | |
parent | 0d839cbefc19247fd2b4c1132b91083bf0983305 (diff) | |
download | forums-18875894ec046e48e8627a9c1b2158670eea70e9.tar forums-18875894ec046e48e8627a9c1b2158670eea70e9.tar.gz forums-18875894ec046e48e8627a9c1b2158670eea70e9.tar.bz2 forums-18875894ec046e48e8627a9c1b2158670eea70e9.tar.xz forums-18875894ec046e48e8627a9c1b2158670eea70e9.zip |
[ticket/12597] Fix constructor bug and servral doc blocs
PHPBB3-12597
Diffstat (limited to 'tests/console/cron/tasks')
-rw-r--r-- | tests/console/cron/tasks/simple.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/console/cron/tasks/simple.php b/tests/console/cron/tasks/simple.php index 15194caaf7..b1fd41f34e 100644 --- a/tests/console/cron/tasks/simple.php +++ b/tests/console/cron/tasks/simple.php @@ -6,8 +6,7 @@ class phpbb_cron_task_simple extends \phpbb\cron\task\base public function __construct() { - $executed = false; - parent::__construct(); + $this->executed = false; } public function get_name() |