Removed job pipeline text redundancy (#265)

Removed doubled use of "by default" (redundancy).
This commit is contained in:
Liam McArthur 2024-02-10 19:05:15 +00:00 committed by GitHub
parent 303ffdde45
commit e4a28db8fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;`