From e4a28db8fd532671de0805d5ff148463dbb4e0c7 Mon Sep 17 00:00:00 2001 From: Liam McArthur Date: Sat, 10 Feb 2024 19:05:15 +0000 Subject: [PATCH] Removed job pipeline text redundancy (#265) Removed doubled use of "by default" (redundancy). --- source/docs/v3/event-system.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v3/event-system.blade.md b/source/docs/v3/event-system.blade.md index c7c4eea..58ea94d 100644 --- a/source/docs/v3/event-system.blade.md +++ b/source/docs/v3/event-system.blade.md @@ -83,7 +83,7 @@ JobPipeline::make([ }) ``` -Next, decide if you want to queue the pipeline. By default, pipelines are synchronous (= not queued) by default. +Next, decide if you want to queue the pipeline. By default, pipelines are synchronous (= not queued). If you **do** want pipelines to be queued by default, you can do that by setting a static property: `\Stancl\JobPipeline\JobPipeline::$shouldBeQueuedByDefault = true;`