| Current Path : /home/rtorresani/www/vendor/magento/module-backend/Model/View/Layout/ |
| Current File : //home/rtorresani/www/vendor/magento/module-backend/Model/View/Layout/Builder.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Model\View\Layout;
use Magento\Framework\App;
use Magento\Framework\Event;
use Magento\Framework\View;
/**
* @api
* @since 100.0.2
*/
class Builder extends \Magento\Framework\View\Layout\Builder
{
/**
* @return $this
*/
protected function afterGenerateBlock()
{
$this->layout->initMessages();
return $this;
}
}