> */ public const REGISTRY = [ 'notifications/cancelled' => CancelledNotification::class, 'notifications/progress' => ProgressNotification::class, 'notifications/initialized' => InitializedNotification::class, 'notifications/roots/list_changed' => RootsListChangedNotification::class, 'notifications/tasks/status' => TaskStatusNotification::class, ]; /** * Creates an instance from an array. * * @param array $data * @return ClientNotificationInterface * @throws \InvalidArgumentException */ public static function fromArray(array $data): ClientNotificationInterface { if (!isset($data['method'])) { throw new \InvalidArgumentException('Missing discriminator field: method'); } /** @var string $method */ $method = $data['method']; if (!isset(self::REGISTRY[$method])) { throw new \InvalidArgumentException(sprintf( "Unknown method value '%s'. Valid values: %s", $method, implode(', ', array_keys(self::REGISTRY)) )); } $class = self::REGISTRY[$method]; return $class::fromArray($data); } /** * Checks if a method value is supported by this factory. * * @param string $method * @return bool */ public static function supports(string $method): bool { return isset(self::REGISTRY[$method]); } /** * Returns all supported method values. * * @return array */ public static function methods(): array { return array_keys(self::REGISTRY); } }