lasthourcloud/app/Jobs/ServerFilesFromServerJob.php

28 lines
731 B
PHP
Raw Normal View History

2024-03-13 17:26:30 +00:00
<?php
namespace App\Jobs;
use App\Models\Application;
2024-03-13 17:26:30 +00:00
use App\Models\ServiceApplication;
use App\Models\ServiceDatabase;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2024-06-10 20:43:34 +00:00
class ServerFilesFromServerJob implements ShouldBeEncrypted, ShouldQueue
2024-03-13 17:26:30 +00:00
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public function __construct(public ServiceApplication|ServiceDatabase|Application $resource)
2024-03-13 17:26:30 +00:00
{
}
2024-06-10 20:43:34 +00:00
2024-03-13 17:26:30 +00:00
public function handle()
{
$this->resource->getFilesFromServer(isInit: true);
2024-03-13 17:26:30 +00:00
}
}