21 lines
181 B
PHP
21 lines
181 B
PHP
<?php
|
|
|
|
namespace Kiri\Crontab;
|
|
|
|
interface CrontabInterface
|
|
{
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function onMaxExecute(): void;
|
|
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isStop(): bool;
|
|
|
|
}
|