diff --git a/System/Crontab/Crontab.php b/System/Crontab/Crontab.php index 83246733..3efa0507 100644 --- a/System/Crontab/Crontab.php +++ b/System/Crontab/Crontab.php @@ -200,8 +200,8 @@ class Crontab extends BaseObject public function execute(): void { try { - var_dump($this->handler); - call_user_func($this->handler, $this->params, $this->name); + $result = call_user_func($this->handler, $this->params, $this->name); + var_dump($result); } catch (\Throwable $throwable) { $this->addError($throwable->getMessage()); } finally {