$data */ public function __construct(private readonly array $data) {} /** @return array */ public function all(): array { return $this->data; } public function get(string $name, mixed $default = null): mixed { return $this->data[$name] ?? $default; } }