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