Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/View/Element/ |
Current File : /home/dev2.destoffenstraat.com/vendor-1/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(); }