Files
2017-11-14 15:04:59 +01:00

13 lines
283 B
PHP

<?php
namespace Edeclic\Virebent\Controller\Index;
class Index extends \Magento\Framework\App\Action\Action
{
public function execute()
{
$this->_view->loadLayout();
$this->_view->getLayout()->initMessages();
$this->_view->renderLayout();
}
}