From 0245430fcd9caf5c75c590d5bcc168af7b24a97d Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Fri, 16 Aug 2024 18:47:09 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Illuminate/Foundation/Vite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Vite.php b/src/Illuminate/Foundation/Vite.php index 380fa74ed192..747da7b14d08 100644 --- a/src/Illuminate/Foundation/Vite.php +++ b/src/Illuminate/Foundation/Vite.php @@ -290,7 +290,7 @@ public function usePreloadTagAttributes($attributes) public function useWaterfallPrefetching(?int $concurrency = null) { return $this->usePrefetchStrategy('waterfall', [ - 'concurrency' => $concurrency ?? $this->prefetchConcurrently + 'concurrency' => $concurrency ?? $this->prefetchConcurrently, ]); }