coolify/app/Actions/Server/RestartContainer.php

17 lines
279 B
PHP
Raw Permalink Normal View History

2024-10-29 09:28:05 +00:00
<?php
namespace App\Actions\Server;
use App\Models\Server;
use Lorisleiva\Actions\Concerns\AsAction;
class RestartContainer
{
use AsAction;
public function handle(Server $server, string $containerName)
{
$server->restartContainer($containerName);
}
}