From b87950654bd778265806f569c29abae97c9cd944 Mon Sep 17 00:00:00 2001 From: Jeppe Bundgaard Date: Mon, 15 Sep 2025 15:38:07 +0200 Subject: [PATCH] Clarify comment formatting in `vehiclesRoute` to improve readability. --- services/nginx/app/routes/vehiclesRoute.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/nginx/app/routes/vehiclesRoute.php b/services/nginx/app/routes/vehiclesRoute.php index 543a853a..9ca11c3e 100644 --- a/services/nginx/app/routes/vehiclesRoute.php +++ b/services/nginx/app/routes/vehiclesRoute.php @@ -741,7 +741,8 @@ class vehiclesRoute $known_regs = self::getKnownRegs($search, $options); $booked_regs = self::getBookedRegs($search, $options); $unknown_regs = array_filter(array_unique(array_merge([...self::getUnknownRegs($search, $options), $search]))); // Add the search term as the first item, to ensure it is included in the results - /** Prevent overlaps between the lists + /** + * Prevent overlaps between the lists * - Booked vehicles should not be in known, unknown or verified * - Verified vehicles should not be in known or booked * - Known vehicles should not be in unknown