Builder.php 489 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Backend\Model\View\Layout;
  7. use Magento\Framework\App;
  8. use Magento\Framework\Event;
  9. use Magento\Framework\View;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. class Builder extends \Magento\Framework\View\Layout\Builder
  15. {
  16. /**
  17. * @return $this
  18. */
  19. protected function afterGenerateBlock()
  20. {
  21. $this->layout->initMessages();
  22. return $this;
  23. }
  24. }