PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Common
/
JsonRpc
/
Union
<?php declare(strict_types=1); namespace WP\McpSchema\Common\JsonRpc\Union; use WP\McpSchema\Common\JsonRpc\Union\JSONRPCMessageInterface; /** * A response to a request, containing either the result or error. * * Union type members: * - JSONRPCResultResponse * - JSONRPCErrorResponse * * @mcp-domain Common * @mcp-subdomain JsonRpc * @mcp-version 2025-11-25 */ interface JSONRPCResponseInterface extends JSONRPCMessageInterface { }
[-] JSONRPCResponseInterface.php
[edit]
[+]
..
[-] JSONRPCMessageInterface.php
[edit]