PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 3.4.3
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v3.4.3
3.4.3 3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 All 196 releases
convertkit / vendor / wordpress / php-mcp-schema / src / Common / Protocol / DTO / EmptyResult.php

EmptyResult.php in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 3.4.3, at vendor/wordpress/php-mcp-schema/src/Common/Protocol/DTO/EmptyResult.php

30 lines 915 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace WP\McpSchema\Common\Protocol\DTO;
6
7 use WP\McpSchema\Client\Lifecycle\Union\ClientResultInterface;
8 use WP\McpSchema\Server\Lifecycle\Union\ServerResultInterface;
9
10 /**
11 * A response that indicates success but carries no data.
12 *
13 * This class is a wrapper for {@see Result} that implements union interfaces.
14 * In TypeScript, this is defined as: `type EmptyResult = Result`
15 *
16 * PHP requires actual classes for union interface implementation, so this wrapper
17 * provides type-safe compatibility with:
18 * - {@see ClientResultInterface}
19 * - {@see ServerResultInterface}
20 *
21 * @mcp-domain Common
22 * @mcp-subdomain Protocol
23 * @mcp-version 2025-11-25
24 */
25 class EmptyResult extends Result implements ClientResultInterface, ServerResultInterface
26 {
27 // Inherits all functionality from Result.
28 // This wrapper exists solely to implement union interfaces for type safety.
29 }
30