Viewing File: /home/maglabs/it/lib/internal/Magento/Framework/View/Element/BlockInterface.php

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

/**
 * Magento Block
 *
 * Used to present information to user
 *
 * @api
 * @since 100.0.2
 */
interface BlockInterface
{
    /**
     * Produce and return block's html output
     *
     * @return string
     */
    public function toHtml();
}
Back to Directory File Manager