2021-04-14 14:14:12 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Snowflake\Crontab;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class DefaultCrontab
|
|
|
|
|
* @package Snowflake\Crontab
|
|
|
|
|
*/
|
|
|
|
|
class DefaultCrontab extends Crontab
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function isStop(): bool
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement isStop() method.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
2021-04-14 14:17:14 +08:00
|
|
|
public function process(): mixed
|
2021-04-14 14:14:12 +08:00
|
|
|
{
|
|
|
|
|
// TODO: Implement process() method.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-04-14 14:17:14 +08:00
|
|
|
public function max_execute(): mixed
|
2021-04-14 14:14:12 +08:00
|
|
|
{
|
|
|
|
|
// TODO: Implement max_execute() method.
|
|
|
|
|
}
|
|
|
|
|
}
|