mirror of
https://github.com/sp-tarkov/db-website.git
synced 2025-02-08 15:50:46 -05:00
27 lines
315 B
PHP
27 lines
315 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
class ExampleJob extends Job
|
|
{
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
}
|
|
}
|