for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Symbiote\QueuedJobs\Services;
use Symbiote\QueuedJobs\DataObjects\QueuedJobDescriptor;
/**
* Default method for handling items run via the cron
*
* @author [email protected]
* @license BSD License http://silverstripe.org/bsd-license/
*/
class DefaultQueueHandler
{
public function startJobOnQueue(QueuedJobDescriptor $job)
$job->activateOnQueue();
}
public function scheduleJob(QueuedJobDescriptor $job, $date)
$job
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$date
// noop
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.