We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b32105 commit eb244f6Copy full SHA for eb244f6
helpers.md
@@ -3373,11 +3373,11 @@ $user = Pipeline::send($user)
3373
->thenReturn();
3374
```
3375
3376
-The `withinTransactions` method may be invoked on the pipeline to automatically wrap all steps of the pipeline within a single database transaction:
+The `withinTransaction` method may be invoked on the pipeline to automatically wrap all steps of the pipeline within a single database transaction:
3377
3378
```php
3379
$user = Pipeline::send($user)
3380
- ->withinTransactions()
+ ->withinTransaction()
3381
->through([
3382
GenerateProfilePhoto::class,
3383
ActivateSubscription::class,
0 commit comments