Skip to content

Commit f95d0c7

Browse files
authored
Clarify workflow start method documentation
Removed redundant information about passing data to the workflow's start method.
1 parent f959d64 commit f95d0c7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

docs/defining-workflows/starting-workflows.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ $workflow = WorkflowStub::make(MyWorkflow::class);
1313
$workflow->start();
1414
```
1515

16-
You can also pass data to the workflow via the `start()` method. Any data you pass in will be sent to the workflow's `execute()` method.
17-
1816
Once a workflow has been started, it will be executed asynchronously by a queue worker. The `start()` method returns immediately and does not block the current request.
1917

2018
You can obtain an instance of an existing workflow using its workflow ID.

0 commit comments

Comments
 (0)