From dcaab8449be2de3638d12cdf1818c4c4ac041473 Mon Sep 17 00:00:00 2001 From: Simon Hamp Date: Mon, 14 Jul 2025 17:15:00 +0100 Subject: [PATCH] Fix parameter order --- prompts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompts.md b/prompts.md index 03923c2fd6..cec1d4b97c 100644 --- a/prompts.md +++ b/prompts.md @@ -858,8 +858,8 @@ The `spin` function displays a spinner along with an optional message while exec use function Laravel\Prompts\spin; $response = spin( - message: 'Fetching response...', callback: fn () => Http::get('http://example.com') + message: 'Fetching response...', ); ```