This commit is contained in:
2021-04-14 14:14:12 +08:00
parent 9a3e1d8e6f
commit ebcb9735c7
2 changed files with 77 additions and 13 deletions
+38
View File
@@ -0,0 +1,38 @@
<?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(): void
{
// TODO: Implement process() method.
}
public function max_execute(): void
{
// TODO: Implement max_execute() method.
}
}