From f4672c6cb1c4b5932a993a8106a6aba862a7c4df Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Wed, 22 May 2024 03:15:29 -0400 Subject: [PATCH] Pint fix --- app/Services/Deployment/AllocationSelectionService.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Services/Deployment/AllocationSelectionService.php b/app/Services/Deployment/AllocationSelectionService.php index 715533cf5..3868d0b38 100644 --- a/app/Services/Deployment/AllocationSelectionService.php +++ b/app/Services/Deployment/AllocationSelectionService.php @@ -92,8 +92,7 @@ class AllocationSelectionService { $query = Allocation::query() ->whereNull('server_id') - ->whereIn('node_id', $nodes) - ; + ->whereIn('node_id', $nodes); if (!empty($ports)) { $query->where(function ($inner) use ($ports) {