/home/ivoiecob/email.hirewise-va.com/vendor/plesk/api-php-lib/src/Api/XmlResponse.php
<?php
// Copyright 1999-2025. WebPros International GmbH.

namespace PleskX\Api;

/**
 * XML wrapper for responses.
 */
class XmlResponse extends \SimpleXMLElement
{
    /**
     * Retrieve value by node name.
     *
     * @param string $node
     *
     * @return string
     */
    public function getValue(string $node): string
    {
        $result = $this->xpath('//' . $node);
        if (is_array($result) && isset($result[0])) {
            return (string) $result[0];
        }

        return '';
    }
}