Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Plugin/Webapi/Controller/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Plugin/Webapi/Controller/Rest.php

<?php

namespace StripeIntegration\Payments\Plugin\Webapi\Controller;

class Rest
{
    private $display = false;

    public function afterDispatch(
        $subject,
        $response, // result
        \Magento\Framework\App\RequestInterface $request
    ) {
        if ($this->display)
        {
            $response->clearHeader('errorRedirectAction');
        }

        return $response;
    }

    public function setDisplay(bool $value)
    {
        $this->display = $value;
    }
}