We will work on Apr 26th (Saturday) and will be off from Apr 30th (Wednesday) until May 2nd (Friday) for public holiday in our country

Index.php 307 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php


namespace Adyen\Payment\Controller\Process;

class Index extends \Magento\Framework\App\Action\Action
{
    public function execute()
    {
        echo 'test';die();
        $this->_view->loadLayout();
        $this->_view->getLayout()->initMessages();
        $this->_view->renderLayout();
    }
}