DIR:/home/austenwhite.co.uk/www/dev/vendor/magento/framework/View/Element/ |
Current File : //home/austenwhite.co.uk/www/dev/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(); } |