You've already forked Php-Template
All checks were successful
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 1m30s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Successful in 1m43s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m49s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m39s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m48s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Successful in 1m21s
Reviewed-on: #25 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
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;
|
|
}
|