diff options
Diffstat (limited to 'tests/console/cron/tasks/simple.php')
-rw-r--r-- | tests/console/cron/tasks/simple.php | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/tests/console/cron/tasks/simple.php b/tests/console/cron/tasks/simple.php index b1fd41f34e..c814c29bde 100644 --- a/tests/console/cron/tasks/simple.php +++ b/tests/console/cron/tasks/simple.php @@ -1,13 +1,19 @@ <?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ class phpbb_cron_task_simple extends \phpbb\cron\task\base { - public $executed; - - public function __construct() - { - $this->executed = false; - } + public $executed = false; public function get_name() { |