12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Jobs\Video;
- use App\Service\Util\Support\Trace\TraceContext;
- use Illuminate\Bus\Queueable;
- use Illuminate\Contracts\Queue\ShouldBeUnique;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Bus\Dispatchable;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Queue\SerializesModels;
- class WechatCheck implements ShouldQueue
- {
- use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
- private $info;
- /**
- * Create a new job instance.
- */
- public function __construct($info)
- {
- $this->info = $info;
- }
- /**
- * Execute the job.
- */
- public function handle(): void
- {
- myLog('wechatCheck')->info('开始处理微信提审', [
- 'info' => $this->info
- ]);
- $traceContext = TraceContext::newFromParent($this->info['traceInfo']);
- }
- }
|