39 lines
432 B
PHP
39 lines
432 B
PHP
<?php
|
|
|
|
|
|
namespace Snowflake\Crontab;
|
|
|
|
|
|
/**
|
|
* Class DefaultCrontab
|
|
* @package Snowflake\Crontab
|
|
*/
|
|
class DefaultCrontab extends Crontab
|
|
{
|
|
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isStop(): bool
|
|
{
|
|
// TODO: Implement isStop() method.
|
|
}
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function process(): mixed
|
|
{
|
|
// TODO: Implement process() method.
|
|
}
|
|
|
|
|
|
|
|
public function max_execute(): mixed
|
|
{
|
|
// TODO: Implement max_execute() method.
|
|
}
|
|
}
|