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 70e7d99 commit 7bf2a9aCopy full SHA for 7bf2a9a
docs/features/concurrency.md
@@ -20,8 +20,8 @@ class MyWorkflow extends Workflow
20
{
21
return [
22
yield activity(MyActivity1::class),
23
- yield activity(MyActivity1::class),
24
+ yield activity(MyActivity2::class),
+ yield activity(MyActivity3::class),
25
];
26
}
27
@@ -90,9 +90,9 @@ You can pass child workflows to `all()` along with other activities. It works th
90
use function Workflow\{all, child};
91
92
$results = yield all([
93
- child(ChildA::class),
94
- child(ChildB::class),
95
- child(ChildC::class),
+ child(MyChild1::class),
+ child(MyChild2::class),
+ child(MyChild3::class),
96
]);
97
```
98
0 commit comments