PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Common
/
JsonRpc
/
DTO
<?php declare(strict_types=1); namespace WP\McpSchema\Common\JsonRpc\DTO; use WP\McpSchema\Common\AbstractDataTransferObject; use WP\McpSchema\Common\Traits\ValidatesRequiredFields; /** * @since 2025-11-25 * * @mcp-domain Common * @mcp-subdomain JsonRpc * @mcp-version 2025-11-25 */ class NotificationParams extends AbstractDataTransferObject { use ValidatesRequiredFields; /** * See [General fields: `_meta`](/specification/2025-11-25/basic/index#meta) for notes on `_meta` usage. * * @since 2025-11-25 * * @var array<string, mixed>|null */ protected ?array $_meta; /** * @param array<string, mixed>|null $_meta @since 2025-11-25 */ public function __construct( ?array $_meta = null ) { $this->_meta = $_meta; } /** * Creates an instance from an array. * * @param array{ * _meta?: array<string, mixed>|null * } $data * @phpstan-param array<string, mixed> $data * @return self */ public static function fromArray(array $data): self { return new self( self::asArrayOrNull($data['_meta'] ?? null) ); } /** * Converts the instance to an array. * * @return array<string, mixed> */ public function toArray(): array { $result = []; if ($this->_meta !== null) { $result['_meta'] = $this->_meta; } return $result; } /** * @return array<string, mixed>|null */ public function get_meta(): ?array { return $this->_meta; } }
[-] JSONRPCResultResponse.php
[edit]
[-] RequestParams.php
[edit]
[-] JSONRPCErrorResponse.php
[edit]
[-] NotificationParams.php
[edit]
[-] Request.php
[edit]
[-] RequestParamsMeta.php
[edit]
[-] Error.php
[edit]
[+]
..
[-] JSONRPCRequest.php
[edit]
[-] JSONRPCNotification.php
[edit]
[-] Notification.php
[edit]