PHP code example of jc-it / yii2-job-queue-recurring
1. Go to this page and download the library: Download jc-it/yii2-job-queue-recurring library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jc-it / yii2-job-queue-recurring example snippets
public function actions(): array
{
return [
'daemon' => \JCIT\jobqueue\actions\DaemonAction::class,
'recurring' => \JCIT\jobqueue\actions\RecurringJobAction::class,
];
}
$jobFactory = \Yii::createObject(\JCIT\jobqueue\interfaces\JobFactoryInterface::class);
$job = new \JCIT\jobqueue\models\activeRecord\RecurringJob([
'name' => 'Hello world job',
'description' => 'Say hello to the world every minute',
'job_data' => $jobFactory->saveToArray(new \JCIT\jobqueue\jobs\HelloJob('world')),
'cron' => '* * * * *'
]);
$job->save();