PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Server
/
Resources
/
DTO
<?php declare(strict_types=1); namespace WP\McpSchema\Server\Resources\DTO; use WP\McpSchema\Common\JsonRpc\DTO\JSONRPCNotification; use WP\McpSchema\Common\Traits\ValidatesRequiredFields; use WP\McpSchema\Server\Lifecycle\Union\ServerNotificationInterface; /** * A notification from the server to the client, informing it that a resource has changed and may need to be read again. This should only be sent if the client previously sent a resources/subscribe request. * * @since 2024-11-05 * @last-updated 2025-11-25 (modified property: params) * * @mcp-domain Server * @mcp-subdomain Resources * @mcp-version 2025-11-25 */ class ResourceUpdatedNotification extends JSONRPCNotification implements ServerNotificationInterface { use ValidatesRequiredFields; public const METHOD = 'notifications/resources/updated'; public const DISCRIMINATOR_FIELD = 'method'; public const DISCRIMINATOR_VALUE = 'notifications/resources/updated'; /** * @var \WP\McpSchema\Server\Resources\DTO\ResourceUpdatedNotificationParams */ protected ResourceUpdatedNotificationParams $typedParams; /** * @param '2.0' $jsonrpc @since 2025-11-25 * @param \WP\McpSchema\Server\Resources\DTO\ResourceUpdatedNotificationParams $params @since 2024-11-05 */ public function __construct( string $jsonrpc, ResourceUpdatedNotificationParams $params ) { parent::__construct(self::METHOD, $jsonrpc, null); $this->typedParams = $params; } /** * Creates an instance from an array. * * @param array{ * jsonrpc: '2.0', * method: 'notifications/resources/updated', * params: array<string, mixed>|\WP\McpSchema\Server\Resources\DTO\ResourceUpdatedNotificationParams * } $data * @phpstan-param array<string, mixed> $data * @return self */ public static function fromArray(array $data): self { self::assertRequired($data, ['jsonrpc', 'params']); /** @var '2.0' $jsonrpc */ $jsonrpc = self::asString($data['jsonrpc']); /** @var \WP\McpSchema\Server\Resources\DTO\ResourceUpdatedNotificationParams $params */ $params = is_array($data['params']) ? ResourceUpdatedNotificationParams::fromArray(self::asArray($data['params'])) : $data['params']; return new self( $jsonrpc, $params ); } /** * Converts the instance to an array. * * @return array<string, mixed> */ public function toArray(): array { $result = parent::toArray(); $result['params'] = $this->typedParams->toArray(); return $result; } /** * @return \WP\McpSchema\Server\Resources\DTO\ResourceUpdatedNotificationParams */ public function getTypedParams(): ResourceUpdatedNotificationParams { return $this->typedParams; } }
[-] ResourceContents.php
[edit]
[-] SubscribeRequestParams.php
[edit]
[-] SubscribeRequest.php
[edit]
[-] ResourceUpdatedNotification.php
[edit]
[-] ListResourceTemplatesResult.php
[edit]
[-] ListResourcesRequest.php
[edit]
[-] ResourceTemplate.php
[edit]
[-] UnsubscribeRequestParams.php
[edit]
[-] ListResourceTemplatesRequest.php
[edit]
[-] ReadResourceResult.php
[edit]
[-] UnsubscribeRequest.php
[edit]
[-] ResourceRequestParams.php
[edit]
[-] ListResourcesResult.php
[edit]
[+]
..
[-] Resource.php
[edit]
[-] ResourceLink.php
[edit]
[-] ReadResourceRequest.php
[edit]
[-] ResourceListChangedNotification.php
[edit]
[-] ResourceUpdatedNotificationParams.php
[edit]
[-] ReadResourceRequestParams.php
[edit]