summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/php_server/src/EchoService.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/grpc/php_server/src/EchoService.php')
-rw-r--r--tests/plugins/grpc/php_server/src/EchoService.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/plugins/grpc/php_server/src/EchoService.php b/tests/plugins/grpc/php_server/src/EchoService.php
deleted file mode 100644
index c2707811..00000000
--- a/tests/plugins/grpc/php_server/src/EchoService.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- * Sample GRPC PHP server.
- */
-
-use Spiral\GRPC\ContextInterface;
-use Service\EchoInterface;
-use Service\Message;
-
-class EchoService implements EchoInterface
-{
- public function Ping(ContextInterface $ctx, Message $in): Message
- {
- $out = new Message();
- return $out->setMsg(strtoupper($in->getMsg()));
- }
-} \ No newline at end of file