Your IP : 216.73.216.220


Current Path : /var/www/html/generated/code/Magento/TwoFactorAuth/Model/TfaSession/
Upload File :
Current File : /var/www/html/generated/code/Magento/TwoFactorAuth/Model/TfaSession/Interceptor.php

<?php
namespace Magento\TwoFactorAuth\Model\TfaSession;

/**
 * Interceptor class for @see \Magento\TwoFactorAuth\Model\TfaSession
 */
class Interceptor extends \Magento\TwoFactorAuth\Model\TfaSession implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Framework\App\Request\Http $request, \Magento\Framework\Session\SidResolverInterface $sidResolver, \Magento\Framework\Session\Config\ConfigInterface $sessionConfig, \Magento\Framework\Session\SaveHandlerInterface $saveHandler, \Magento\Framework\Session\ValidatorInterface $validator, \Magento\Framework\Session\StorageInterface $storage, \Magento\Framework\Stdlib\CookieManagerInterface $cookieManager, \Magento\Framework\Stdlib\Cookie\CookieMetadataFactory $cookieMetadataFactory, \Magento\Framework\App\State $appState, ?\Magento\Framework\Session\SessionStartChecker $sessionStartChecker = null)
    {
        $this->___init();
        parent::__construct($request, $sidResolver, $sessionConfig, $saveHandler, $validator, $storage, $cookieManager, $cookieMetadataFactory, $appState, $sessionStartChecker);
    }

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

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

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