From 42363b51af18b527cd6bf45e5b0d95576a90f18b Mon Sep 17 00:00:00 2001 From: John McMurray Date: Sun, 10 Aug 2025 14:57:48 +0200 Subject: [PATCH] Fixes typo in broadcasting documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed typo: "with prompt" → "will prompt" in the quickstart guide. --- broadcasting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/broadcasting.md b/broadcasting.md index 98075d4b7d1..950b96d3b6c 100644 --- a/broadcasting.md +++ b/broadcasting.md @@ -69,7 +69,7 @@ By default, broadcasting is not enabled in new Laravel applications. You may ena php artisan install:broadcasting ``` -The `install:broadcasting` command with prompt you for which event broadcasting service you would like to use. In addition, it will create the `config/broadcasting.php` configuration file and the `routes/channels.php` file where you may register your application's broadcast authorization routes and callbacks. +The `install:broadcasting` command will prompt you for which event broadcasting service you would like to use. In addition, it will create the `config/broadcasting.php` configuration file and the `routes/channels.php` file where you may register your application's broadcast authorization routes and callbacks. Laravel supports several broadcast drivers out of the box: [Laravel Reverb](/docs/{{version}}/reverb), [Pusher Channels](https://pusher.com/channels), [Ably](https://ably.com), and a `log` driver for local development and debugging. Additionally, a `null` driver is included which allows you to disable broadcasting during testing. A configuration example is included for each of these drivers in the `config/broadcasting.php` configuration file.