vito/app/Jobs/Service/Install.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

25 lines
344 B
PHP

<?php
namespace App\Jobs\Service;
use App\Jobs\Job;
use App\Models\Service;
class Install extends Job
{
protected Service $service;
public function __construct(Service $service)
{
$this->service = $service;
}
public function handle()
{
}
public function failed(\Throwable $throwable)
{
}
}