summaryrefslogtreecommitdiff
path: root/tests/temporal/Workflow/WithChildStubWorkflow.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/temporal/Workflow/WithChildStubWorkflow.php')
-rw-r--r--tests/temporal/Workflow/WithChildStubWorkflow.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/temporal/Workflow/WithChildStubWorkflow.php b/tests/temporal/Workflow/WithChildStubWorkflow.php
deleted file mode 100644
index cdebe3d8..00000000
--- a/tests/temporal/Workflow/WithChildStubWorkflow.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?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));
- }
-}