PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Client
/
Tasks
/
DTO
<?php declare(strict_types=1); namespace WP\McpSchema\Client\Tasks\DTO; use WP\McpSchema\Common\AbstractDataTransferObject; use WP\McpSchema\Common\Traits\ValidatesRequiredFields; /** * Metadata for associating messages with a task. * Include this in the `_meta` field under the key `io.modelcontextprotocol/related-task`. * * @since 2025-11-25 * * @mcp-domain Client * @mcp-subdomain Tasks * @mcp-version 2025-11-25 */ class RelatedTaskMetadata extends AbstractDataTransferObject { use ValidatesRequiredFields; /** * The task identifier this message is associated with. * * @since 2025-11-25 * * @var string */ protected string $taskId; /** * @param string $taskId @since 2025-11-25 */ public function __construct( string $taskId ) { $this->taskId = $taskId; } /** * Creates an instance from an array. * * @param array{ * taskId: string * } $data * @phpstan-param array<string, mixed> $data * @return self */ public static function fromArray(array $data): self { self::assertRequired($data, ['taskId']); return new self( self::asString($data['taskId']) ); } /** * Converts the instance to an array. * * @return array<string, mixed> */ public function toArray(): array { $result = []; $result['taskId'] = $this->taskId; return $result; } /** * @return string */ public function getTaskId(): string { return $this->taskId; } }
[-] CreateTaskResult.php
[edit]
[-] TaskMetadata.php
[edit]
[-] RelatedTaskMetadata.php
[edit]
[-] Task.php
[edit]
[+]
..