1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace EasySwoole\Crontab\Tests\Jobs;
- use EasySwoole\Crontab\JobInterface;
- class JobPerMin implements JobInterface
- {
- public function jobName(): string
- {
- return 'JobPerMin';
- }
- public function crontabRule(): string
- {
- return '*/1 * * * *';
- }
- public function run()
- {
- var_dump(time());
- return time();
- }
- public function onException(\Throwable $throwable)
- {
- throw $throwable;
- }
- }
|