Hi there,
I can't get my LazyCron to fire
<?php
$useMain = false;
$wire->addHook('LazyCron::everyMinute', null, function() {
$log->message("1 min passed");
echo '1 min passed';
});
echo 'hooked - ';
?>
Some output for good measure
I tried making it into an anonymous function (see above), but same result as by using the example in the docs (with regular function).
No lazycron*.cache file, No logs, No message - it just doesn't fire at all. Not sure how to proceed?
tx!