PATH:
home
/
thebhoeo
/
.trash
/
backwpup
/
vendor
/
wordpress
/
php-mcp-schema
/
src
/
Client
/
Lifecycle
/
DTO
<?php declare(strict_types=1); namespace WP\McpSchema\Client\Lifecycle\DTO; use WP\McpSchema\Common\AbstractDataTransferObject; use WP\McpSchema\Common\Traits\ValidatesRequiredFields; /** * Present if the client supports listing roots. * * @mcp-domain Client * @mcp-subdomain Lifecycle * @mcp-version 2025-11-25 */ class ClientCapabilitiesRoots extends AbstractDataTransferObject { use ValidatesRequiredFields; /** * Whether the client supports notifications for changes to the roots list. * * @var bool|null */ protected ?bool $listChanged; /** * @param bool|null $listChanged */ public function __construct( ?bool $listChanged = null ) { $this->listChanged = $listChanged; } /** * Creates an instance from an array. * * @param array{ * listChanged?: bool|null * } $data * @phpstan-param array<string, mixed> $data * @return self */ public static function fromArray(array $data): self { return new self( self::asBoolOrNull($data['listChanged'] ?? null) ); } /** * Converts the instance to an array. * * @return array<string, mixed> */ public function toArray(): array { $result = []; if ($this->listChanged !== null) { $result['listChanged'] = $this->listChanged; } return $result; } /** * @return bool|null */ public function getListChanged(): ?bool { return $this->listChanged; } }
[-] ClientCapabilitiesSampling.php
[edit]
[-] ClientCapabilitiesTasks.php
[edit]
[-] ClientCapabilitiesRoots.php
[edit]
[-] ClientCapabilities.php
[edit]
[-] ClientCapabilitiesElicitation.php
[edit]
[+]
..