Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/generated/code/Magento/Payment/Model/Checks/Composite/
Upload File :
Current File : //home/rtorresani/www/generated/code/Magento/Payment/Model/Checks/Composite/Interceptor.php

<?php
namespace Magento\Payment\Model\Checks\Composite;

/**
 * Interceptor class for @see \Magento\Payment\Model\Checks\Composite
 */
class Interceptor extends \Magento\Payment\Model\Checks\Composite implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(array $list)
    {
        $this->___init();
        parent::__construct($list);
    }

    /**
     * {@inheritdoc}
     */
    public function isApplicable(\Magento\Payment\Model\MethodInterface $paymentMethod, \Magento\Quote\Model\Quote $quote)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'isApplicable');
        return $pluginInfo ? $this->___callPlugins('isApplicable', func_get_args(), $pluginInfo) : parent::isApplicable($paymentMethod, $quote);
    }
}