refactor(service-management): update stopContainersInParallel method to enforce Server type hint for improved type safety

This commit is contained in:
Andras Bacsai
2025-05-30 13:35:30 +02:00
parent f1e324e129
commit 2c8d30c646

View File

@@ -4,6 +4,7 @@ namespace App\Actions\Service;
use App\Actions\Server\CleanupDocker;
use App\Events\ServiceStatusChanged;
use App\Models\Server;
use App\Models\Service;
use Lorisleiva\Actions\Concerns\AsAction;
@@ -48,7 +49,7 @@ class StopService
}
}
private function stopContainersInParallel(array $containersToStop, $server): void
private function stopContainersInParallel(array $containersToStop, Server $server): void
{
$timeout = count($containersToStop) > 5 ? 10 : 30;
$commands = [];