From 37b9e0f76da94e9ae1a30c2f9bc1b3309fe3e25a Mon Sep 17 00:00:00 2001 From: Jason Judge Date: Tue, 13 Mar 2018 18:29:01 +0000 Subject: [PATCH] The default queue "driver" is actually a "connection" The description here has bothered me for a while, because it is kind of misleading. The `QUEUE_DRIVER` environment variable perhaps also needs changing to `QUEUE_CONNECTION`, but I'm not sure if that is just too engrained in legacy systems now? I can change that on this PR if you agree, and also the matching `QUEUE_DRIVER=sync` in `.env.example`. --- config/queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/queue.php b/config/queue.php index 87b1b1b7..75dc449b 100644 --- a/config/queue.php +++ b/config/queue.php @@ -4,12 +4,12 @@ return [ /* |-------------------------------------------------------------------------- - | Default Queue Driver + | Default Queue Connection |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving you convenient access to each back-end using the same - | syntax for each one. Here you may set the default queue driver. + | syntax for each one. Here you may set the default queue connection. | | Supported: "sync", "database", "beanstalkd", "sqs", "redis", "null" |