| Current Path : /var/www/html/generated/code/Magento/User/Model/UserValidationRules/ |
| Current File : /var/www/html/generated/code/Magento/User/Model/UserValidationRules/Interceptor.php |
<?php
namespace Magento\User\Model\UserValidationRules;
/**
* Interceptor class for @see \Magento\User\Model\UserValidationRules
*/
class Interceptor extends \Magento\User\Model\UserValidationRules implements \Magento\Framework\Interception\InterceptorInterface
{
use \Magento\Framework\Interception\Interceptor;
public function __construct()
{
$this->___init();
}
/**
* {@inheritdoc}
*/
public function addUserInfoRules(\Magento\Framework\Validator\DataObject $validator)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'addUserInfoRules');
return $pluginInfo ? $this->___callPlugins('addUserInfoRules', func_get_args(), $pluginInfo) : parent::addUserInfoRules($validator);
}
}