%PDF- %PDF-
Direktori : /home2/vacivi36/intranet.vacivitta.com.br/protected/vendor/yiisoft/yii2-queue/src/ |
Current File : //home2/vacivi36/intranet.vacivitta.com.br/protected/vendor/yiisoft/yii2-queue/src/JobInterface.php |
<?php /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license https://www.yiiframework.com/license/ */ namespace yii\queue; /** * Job Interface. * * @author Roman Zhuravlev <zhuravljov@gmail.com> */ interface JobInterface { /** * @param Queue $queue which pushed and is handling the job * @return void|mixed result of the job execution */ public function execute($queue); }