From 07342da5fa02510f413440e8966a11dc04f3f07a Mon Sep 17 00:00:00 2001 From: Luke Kuzmish <42181698+cosmastech@users.noreply.github.com> Date: Tue, 5 Aug 2025 14:03:43 -0400 Subject: [PATCH 1/2] Update helpers.md --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index a02e880bac..0b118365e1 100644 --- a/helpers.md +++ b/helpers.md @@ -3370,7 +3370,7 @@ $user = Pipeline::send($user) ->thenReturn(); ``` -The `withinTransactions` method may be invoked on the pipeline to automatically invoke each step of the pipeline within a database transaction: +The `withinTransactions` method may be invoked on the pipeline to automatically invoke each step of the pipeline within a single database transaction: ```php $user = Pipeline::send($user) From 674b9406cad714ecc73e5b9e567cd57a8a4829e5 Mon Sep 17 00:00:00 2001 From: Luke Kuzmish <42181698+cosmastech@users.noreply.github.com> Date: Wed, 6 Aug 2025 05:59:53 -0400 Subject: [PATCH 2/2] Update helpers.md --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index 0b118365e1..d462c266e3 100644 --- a/helpers.md +++ b/helpers.md @@ -3370,7 +3370,7 @@ $user = Pipeline::send($user) ->thenReturn(); ``` -The `withinTransactions` method may be invoked on the pipeline to automatically invoke each step of the pipeline within a single database transaction: +The `withinTransactions` method may be invoked on the pipeline to automatically wrap all steps of the pipeline within a single database transaction: ```php $user = Pipeline::send($user)