Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/framework/View/Element/Text/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/View/Element/Text/ListText.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\View\Element\Text;

use Magento\Framework\View\Element\Text;

/**
 * Class ListText
 *
 * @api
 * @since 100.0.2
 */
class ListText extends \Magento\Framework\View\Element\Text
{
    /**
     * Render html output
     *
     * @return string
     */
    protected function _toHtml()
    {
        $this->setText('');

        $layout = $this->getLayout();
        foreach ($this->getChildNames() as $child) {
            $this->addText($layout->renderElement($child, false));
        }

        return parent::_toHtml();
    }
}