BuilderInterface.php 396 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Layout;
  7. use Magento\Framework\View\LayoutInterface;
  8. /**
  9. * Interface BuilderInterface
  10. *
  11. * @api
  12. * @since 100.0.2
  13. */
  14. interface BuilderInterface
  15. {
  16. /**
  17. * Build structure
  18. *
  19. * @return LayoutInterface
  20. */
  21. public function build();
  22. }