Your IP : 216.73.216.208


Current Path : /home/m/a/g/maglabs/it/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/
Upload File :
Current File : /home/m/a/g/maglabs/it/lib/internal/Magento/Framework/View/TemplateEngine/Xhtml/ResultInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\View\TemplateEngine\Xhtml;

/**
 * Interface ResultInterface
 *
 * @api
 */
interface ResultInterface
{
    /**
     * Get result document root element \DOMElement
     *
     * @return \DOMElement
     */
    public function getDocumentElement();

    /**
     * Append layout configuration
     *
     * @return void
     */
    public function appendLayoutConfiguration();

    /**
     * Returns the string representation
     *
     * @return string
     */
    public function __toString();
}

?>