Cambios generales, a ver si volvemos al desarrollo

This commit is contained in:
2021-06-09 16:24:18 -04:00
parent 1632a2e51f
commit dbb80a9d4e
17 changed files with 314 additions and 520 deletions

View File

@@ -2,25 +2,8 @@
namespace App\Jobs;
class ExampleJob extends Job
{
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
class ExampleJob extends Job {
public function __construct() {}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//
}
public function handle() {}
}

View File

@@ -7,18 +7,6 @@ use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
abstract class Job implements ShouldQueue
{
/*
|--------------------------------------------------------------------------
| Queueable Jobs
|--------------------------------------------------------------------------
|
| This job base class provides a central location to place any logic that
| is shared across all of your jobs. The trait included with the class
| provides access to the "queueOn" and "delay" queue helper methods.
|
*/
abstract class Job implements ShouldQueue {
use InteractsWithQueue, Queueable, SerializesModels;
}