summaryrefslogtreecommitdiff
path: root/tests/src/Activity
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-01-15 12:08:20 +0300
committerValery Piashchynski <[email protected]>2022-01-15 12:08:20 +0300
commit5254c8eb27311e2a8a53a4c90c3829cf1238c563 (patch)
treeb51c9a4c1dd4c25adc511498ce0380a7078c5572 /tests/src/Activity
parent13609dd03dd0d2fa85b9fb850be787bf4e2ea67f (diff)
Repository content update
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests/src/Activity')
-rw-r--r--tests/src/Activity/SimpleActivity.php63
1 files changed, 0 insertions, 63 deletions
diff --git a/tests/src/Activity/SimpleActivity.php b/tests/src/Activity/SimpleActivity.php
deleted file mode 100644
index 576b126e..00000000
--- a/tests/src/Activity/SimpleActivity.php
+++ /dev/null
@@ -1,63 +0,0 @@
-<?php
-
-namespace Temporal\Tests\Activity;
-
-use Temporal\Activity\ActivityInterface;
-use Temporal\Activity\ActivityMethod;
-use Temporal\Api\Common\V1\WorkflowExecution;
-use Temporal\DataConverter\Bytes;
-use Temporal\Tests\DTO\Message;
-use Temporal\Tests\DTO\User;
-
-#[ActivityInterface(prefix: "SimpleActivity.")]
-class SimpleActivity
-{
- #[ActivityMethod]
- public function echo(
- string $input
- ): string {
- return strtoupper($input);
- }
-
- #[ActivityMethod]
- public function lower(
- string $input
- ): string {
- return strtolower($input);
- }
-
- #[ActivityMethod]
- public function greet(
- User $user
- ): Message {
- return new Message(sprintf("Hello %s <%s>", $user->name, $user->email));
- }
-
- #[ActivityMethod]
- public function slow(
- string $input
- ): string {
- sleep(2);
-
- return strtolower($input);
- }
-
- #[ActivityMethod]
- public function sha512(
- Bytes $input
- ): string {
- return hash("sha512", ($input->getData()));
- }
-
- public function updateRunID(WorkflowExecution $e): WorkflowExecution
- {
- $e->setRunId('updated');
- return $e;
- }
-
- #[ActivityMethod]
- public function fail()
- {
- throw new \Error("failed activity");
- }
-} \ No newline at end of file