famelo/scheduler
Composer 安装命令:
composer require famelo/scheduler
包简介
README 文档
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
统计信息
- 总下载量: 368
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2012-12-10