diff options
Diffstat (limited to 'tests/temporal/Workflow/WithChildStubWorkflow.php')
-rw-r--r-- | tests/temporal/Workflow/WithChildStubWorkflow.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/temporal/Workflow/WithChildStubWorkflow.php b/tests/temporal/Workflow/WithChildStubWorkflow.php new file mode 100644 index 00000000..cdebe3d8 --- /dev/null +++ b/tests/temporal/Workflow/WithChildStubWorkflow.php @@ -0,0 +1,20 @@ +<?php + +declare(strict_types=1); + +namespace Temporal\Tests\Workflow; + +use Temporal\Workflow; +use Temporal\Workflow\WorkflowMethod; + +#[Workflow\WorkflowInterface] +class WithChildStubWorkflow +{ + #[WorkflowMethod(name: 'WithChildStubWorkflow')] + public function handler(string $input): iterable + { + $child = Workflow::newChildWorkflowStub(SimpleWorkflow::class); + + return 'Child: ' . (yield $child->handler('child ' . $input)); + } +} |