PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Common
/
Protocol
/
DTO
<?php declare(strict_types=1); namespace WP\McpSchema\Common\Protocol\DTO; use WP\McpSchema\Common\JsonRpc\DTO\JSONRPCRequest; use WP\McpSchema\Common\JsonRpc\DTO\RequestParams; use WP\McpSchema\Common\Protocol\Union\ClientRequestInterface; use WP\McpSchema\Common\Protocol\Union\ServerRequestInterface; use WP\McpSchema\Common\Traits\ValidatesRequiredFields; /** * A ping, issued by either the server or the client, to check that the other party is still alive. The receiver must promptly respond, or else may be disconnected. * * @since 2024-11-05 * @last-updated 2025-11-25 (modified property: params) * * @mcp-domain Common * @mcp-subdomain Protocol * @mcp-version 2025-11-25 */ class PingRequest extends JSONRPCRequest implements ClientRequestInterface, ServerRequestInterface { use ValidatesRequiredFields; public const METHOD = 'ping'; public const DISCRIMINATOR_FIELD = 'method'; public const DISCRIMINATOR_VALUE = 'ping'; /** * @var \WP\McpSchema\Common\JsonRpc\DTO\RequestParams|null */ protected ?RequestParams $typedParams; /** * @param '2.0' $jsonrpc @since 2025-11-25 * @param string|number $id @since 2025-11-25 * @param \WP\McpSchema\Common\JsonRpc\DTO\RequestParams|null $params @since 2024-11-05 */ public function __construct( string $jsonrpc, $id, ?RequestParams $params = null ) { parent::__construct(self::METHOD, $jsonrpc, $id, null); $this->typedParams = $params; } /** * Creates an instance from an array. * * @param array{ * jsonrpc: '2.0', * id: string|number, * method: 'ping', * params?: array<string, mixed>|\WP\McpSchema\Common\JsonRpc\DTO\RequestParams|null * } $data * @phpstan-param array<string, mixed> $data * @return self */ public static function fromArray(array $data): self { self::assertRequired($data, ['jsonrpc', 'id']); /** @var '2.0' $jsonrpc */ $jsonrpc = self::asString($data['jsonrpc']); /** @var string|number $id */ $id = self::asStringOrNumber($data['id']); /** @var \WP\McpSchema\Common\JsonRpc\DTO\RequestParams|null $params */ $params = isset($data['params']) ? (is_array($data['params']) ? RequestParams::fromArray(self::asArray($data['params'])) : $data['params']) : null; return new self( $jsonrpc, $id, $params ); } /** * Converts the instance to an array. * * @return array<string, mixed> */ public function toArray(): array { $result = parent::toArray(); if ($this->typedParams !== null) { $result['params'] = $this->typedParams->toArray(); } return $result; } /** * @return \WP\McpSchema\Common\JsonRpc\DTO\RequestParams|null */ public function getTypedParams(): ?RequestParams { return $this->typedParams; } }
[-] URLElicitationRequiredError.php
[edit]
[-] PaginatedResult.php
[edit]
[-] EmbeddedResource.php
[edit]
[-] TextResourceContents.php
[edit]
[-] BlobResourceContents.php
[edit]
[-] InitializedNotification.php
[edit]
[-] PingRequest.php
[edit]
[-] ProgressNotification.php
[edit]
[-] GetTaskPayloadResult.php
[edit]
[-] Result.php
[edit]
[-] GetTaskPayloadRequest.php
[edit]
[-] InitializeRequest.php
[edit]
[-] Annotations.php
[edit]
[-] CancelledNotificationParams.php
[edit]
[-] EmptyResult.php
[edit]
[-] InitializeRequestParams.php
[edit]
[-] PaginatedRequest.php
[edit]
[+]
..
[-] GetTaskPayloadRequestParams.php
[edit]
[-] PaginatedRequestParams.php
[edit]
[-] BaseMetadata.php
[edit]
[-] InitializeResult.php
[edit]
[-] ProgressNotificationParams.php
[edit]
[-] CancelledNotification.php
[edit]
[-] Icons.php
[edit]