for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace tests\app\jobs;
use yii\base\BaseObject;
use yii\queue\JobInterface;
/**
* Not Void Job
*/
class NotVoidJob extends BaseObject implements JobInterface
{
* @inheritdoc
public function execute($queue)
return [
'a' => 1,
'b' => 2,
];
}