BlockPoolTestBlock.php 429 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Test\Unit;
  7. /**
  8. * Class BlockPoolTestBlock mock
  9. */
  10. class BlockPoolTestBlock implements \Magento\Framework\View\Element\BlockInterface
  11. {
  12. /**
  13. * Produce and return block's html output
  14. *
  15. * @return string
  16. */
  17. public function toHtml()
  18. {
  19. return '';
  20. }
  21. }