created new job to purge old moon ledger records

This commit is contained in:
2020-05-10 18:57:24 -05:00
parent b7291a93b7
commit 50b2e91ec6
2 changed files with 35 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<?php
namespace App\Jobs;
namespace App\Jobs\Commands;
//Internal Libraries
use Illuminate\Bus\Queueable;
+34
View File
@@ -0,0 +1,34 @@
<?php
namespace App\Jobs\Commands;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
class PurgeMoonLedgerJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
//
}
}