This commit is contained in:
2021-04-14 14:17:14 +08:00
parent ebcb9735c7
commit 706caab6de
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -236,9 +236,9 @@ abstract class Crontab extends BaseObject
} }
abstract public function process(): void; abstract public function process(): mixed;
abstract public function max_execute(): void; abstract public function max_execute(): mixed;
abstract public function isStop(): bool; abstract public function isStop(): bool;
+2 -2
View File
@@ -24,14 +24,14 @@ class DefaultCrontab extends Crontab
/** /**
* *
*/ */
public function process(): void public function process(): mixed
{ {
// TODO: Implement process() method. // TODO: Implement process() method.
} }
public function max_execute(): void public function max_execute(): mixed
{ {
// TODO: Implement max_execute() method. // TODO: Implement max_execute() method.
} }