famelo / scheduler
There is no license information available for the latest version (dev-master) of this package.
Package info
github.com/mneuhaus/Famelo.Scheduler
Type:typo3-flow-package
pkg:composer/famelo/scheduler
dev-master
2012-12-11 15:35 UTC
Requires
This package is auto-updated.
Last update: 2026-03-05 21:40:28 UTC
README
Setup a cronjob for the Scheduler:
* * * * * /path/to/flow scheduler:run
Create a new Task:
class MyTask implements \Famelo\Scheduler\Tasks\TaskInterface { /** * Returns the Interval at which this task will be run * The Syntax is equivalent to cron. * Check the mtdowling/cron-expression package for more information: * https://github.com/mtdowling/cron-expression * * @return string $interval */ public function getInterval() { return '*/15 * * * *'; } /** * Execute the Task * * @return void */ public function execute() { // Let's do something... } } ?>
The Interval is based on mtdowling/cron-expression which is based on the cron syntax