<?php
namespace Laminas\Http\PhpEnvironment\Response;

/**
 * Interceptor class for @see \Laminas\Http\PhpEnvironment\Response
 */
class Interceptor extends \Laminas\Http\PhpEnvironment\Response implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct()
    {
        $this->___init();
    }

    /**
     * {@inheritdoc}
     */
    public function sendHeaders()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'sendHeaders');
        return $pluginInfo ? $this->___callPlugins('sendHeaders', func_get_args(), $pluginInfo) : parent::sendHeaders();
    }
}
