You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
27 lines
387 B
27 lines
387 B
<?php |
|
|
|
namespace App\Jobs; |
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue; |
|
use Illuminate\Foundation\Queue\Queueable; |
|
|
|
class StartServer implements ShouldQueue |
|
{ |
|
use Queueable; |
|
|
|
/** |
|
* Create a new job instance. |
|
*/ |
|
public function __construct() |
|
{ |
|
// |
|
} |
|
|
|
/** |
|
* Execute the job. |
|
*/ |
|
public function handle(): void |
|
{ |
|
// |
|
} |
|
}
|
|
|