mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-07 08:52:35 +00:00
init
This commit is contained in:
24
app/Jobs/Service/Install.php
Normal file
24
app/Jobs/Service/Install.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?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)
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user