This commit is contained in:
2022-09-23 18:55:46 +08:00
parent c190c749f4
commit c01dc5f41a
14 changed files with 239 additions and 331 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace Kiri\Rpc;
interface JsonRpcTransporterInterface
{
/**
* @param string $content
* @param string $service
* @return string|bool
*/
public function push(string $content, string $service): string|bool;
}