mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-19 07:08:09 +01:00
b95fdacdd3
PHPBB3-11700
14 lines
172 B
PHP
14 lines
172 B
PHP
<?php
|
|
|
|
class phpbb_cron_task_core_simple_ready extends \phpbb\cron\task\base
|
|
{
|
|
public function get_name()
|
|
{
|
|
return get_class($this);
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
}
|
|
}
|