summaryrefslogtreecommitdiff
path: root/tests/temporal/Workflow/AsyncActivityWorkflow.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/temporal/Workflow/AsyncActivityWorkflow.php')
-rw-r--r--tests/temporal/Workflow/AsyncActivityWorkflow.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/temporal/Workflow/AsyncActivityWorkflow.php b/tests/temporal/Workflow/AsyncActivityWorkflow.php
deleted file mode 100644
index 79e45dfb..00000000
--- a/tests/temporal/Workflow/AsyncActivityWorkflow.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Temporal\Tests\Workflow;
-
-use Temporal\Activity\ActivityCancellationType;
-use Temporal\Activity\ActivityOptions;
-use Temporal\Workflow;
-use Temporal\Workflow\WorkflowMethod;
-use Temporal\Tests\Activity\SimpleActivity;
-
-#[Workflow\WorkflowInterface]
-class AsyncActivityWorkflow
-{
- #[WorkflowMethod(name: 'AsyncActivityWorkflow')]
- public function handler()
- {
- $simple = Workflow::newActivityStub(
- SimpleActivity::class,
- ActivityOptions::new()
- ->withStartToCloseTimeout(20)
- ->withCancellationType(ActivityCancellationType::WAIT_CANCELLATION_COMPLETED)
- );
-
- return yield $simple->external();
- }
-}