mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
Add workers to servers (#547)
This commit is contained in:
13
app/Actions/Worker/DeleteWorker.php
Normal file
13
app/Actions/Worker/DeleteWorker.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Worker;
|
||||
|
||||
use App\Models\Worker;
|
||||
|
||||
class DeleteWorker
|
||||
{
|
||||
public function delete(Worker $worker): void
|
||||
{
|
||||
$worker->delete();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user