Your IP : 216.73.216.220


Current Path : /var/www/html/generated/code/Klarna/Core/Model/Config/
Upload File :
Current File : /var/www/html/generated/code/Klarna/Core/Model/Config/Interceptor.php

<?php
namespace Klarna\Core\Model\Config;

/**
 * Interceptor class for @see \Klarna\Core\Model\Config
 */
class Interceptor extends \Klarna\Core\Model\Config implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig)
    {
        $this->___init();
        parent::__construct($scopeConfig);
    }

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