diff --git a/System/Process/CrontabProcess.php b/System/Process/CrontabProcess.php index 45832b92..b2297ffc 100644 --- a/System/Process/CrontabProcess.php +++ b/System/Process/CrontabProcess.php @@ -95,11 +95,13 @@ class CrontabProcess extends Process } if ($content->isLoop()) { $this->names[$name] = Timer::tick(intval($content->getTickTime() * 1000), function ($content) { - $content->execute($this); + var_dump(Timer::class); +// $content->execute($this); }, $content); } else { $this->names[$name] = Timer::after(intval($content->getTickTime() * 1000), function ($content) { - $content->execute($this); + var_dump(Timer::class); +// $content->execute($this); }, $content); } var_dump($this->names);