Removed job pipeline text redundancy

Removed doubled use of "by default" (redundancy).
This commit is contained in:
Liam McArthur 2024-02-09 21:34:46 +00:00 committed by GitHub
parent 303ffdde45
commit d9ce426b3f
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;`