16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
namespace Kiri\Rpc;
|
|
|
|
interface JsonRpcTransporterInterface
|
|
{
|
|
|
|
/**
|
|
* @param string $content
|
|
* @param string $service
|
|
* @return string|bool
|
|
*/
|
|
public function push(string $content, string $service): string|bool;
|
|
|
|
}
|