You've already forked Php-Template
Some checks failed
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 18s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Failing after 30s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Failing after 19s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Failing after 13s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Failing after 3s
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Failing after 23s
23 lines
567 B
PHP
23 lines
567 B
PHP
<?php
|
|
# Generated by the protocol buffer compiler (roadrunner-server/grpc). DO NOT EDIT!
|
|
# source: protos/example.proto
|
|
|
|
namespace GRPC\Greeter;
|
|
|
|
use Spiral\RoadRunner\GRPC;
|
|
|
|
interface GreeterInterface extends GRPC\ServiceInterface
|
|
{
|
|
// GRPC specific service name.
|
|
public const NAME = "helloworld.Greeter";
|
|
|
|
/**
|
|
* @param GRPC\ContextInterface $ctx
|
|
* @param HelloRequest $in
|
|
* @return HelloReply
|
|
*
|
|
* @throws GRPC\Exception\InvokeException
|
|
*/
|
|
public function SayHello(GRPC\ContextInterface $ctx, HelloRequest $in): HelloReply;
|
|
}
|