开源版本提交

This commit is contained in:
Kris
2025-12-29 22:14:41 +08:00
parent fce7c1ec0b
commit 4216b2080f
3634 changed files with 814409 additions and 2 deletions

26
app/Jobs/ExampleJob.php Normal file
View File

@@ -0,0 +1,26 @@
<?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()
{
//
}
}