This commit is contained in:
2021-08-05 16:01:51 +08:00
parent c17a1cfcc6
commit 300a016dd2
4 changed files with 23 additions and 14 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace Snowflake\Crontab;
interface CrontabInterface
{
/**
*
*/
public function onMaxExecute(): void;
/**
* @return bool
*/
public function isStop(): bool;
}