| Total Complexity | 2 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class WriteCsv implements ShouldQueue |
||
| 16 | { |
||
| 17 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|
|||
| 18 | |||
| 19 | protected $request; |
||
| 20 | |||
| 21 | public $timeout = 120; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Create a new job instance. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function __construct(Request $request) |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Execute the job. |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | public function handle() |
||
| 53 |