<?php
namespace Anowave\Ec\Model\Random;

/**
 * Interceptor class for @see \Anowave\Ec\Model\Random
 */
class Interceptor extends \Anowave\Ec\Model\Random implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

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

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