選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

22 行
370B

  1. <?php
  2. namespace Framework\Queue;
  3. use Framework\Database\Model;
  4. class Job extends Model
  5. {
  6. public function getTable(): string
  7. {
  8. return config('queue.database.table');
  9. }
  10. public function run(): mixed
  11. {
  12. $closure = unserialize($this->closure);
  13. $params = unserialize($this->params);
  14. return $closure(...$params);
  15. }
  16. }

Powered by TurnKey Linux.