Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-paypal/Controller/Payflowadvanced/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-paypal/Controller/Payflowadvanced/ReturnUrl.php

<?php
/**
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Paypal\Controller\Payflowadvanced;

use Magento\Paypal\Model\Config;

class ReturnUrl extends \Magento\Paypal\Controller\Payflow\ReturnUrl
{
    /**
     * Redirect block name
     * @var string
     */
    protected $_redirectBlockName = 'payflow.advanced.iframe';

    /**
     * Payment method code
     * @var string
     */
    protected $allowedPaymentMethodCodes = [
        Config::METHOD_PAYFLOWADVANCED
    ];
}