method runAll documentation in bbn\Cron\Runner
function()
{
$time = 0;
$done = [];
while (($time < $this->timeout) &&
($cron = $this->cron->getManager()->getNext()) &&
!\in_array($cron['id'], $done)
) {
if ($ctx = $this->run($cron['id'])) {
$time += $ctx;
}
array_push($done, $cron['id']);
}
return $time;
}
BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2025
BBN Solutions