| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/View/Element/ |
| Current File : /var/www/clients/client3/web2/web/vendor/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();
}