/** * {@inheritdoc} */ public function setCustomAttribute($attributeCode, $attributeValue) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setCustomAttribute'); if (!$pluginInfo) { return parent::setCustomAttribute($attributeCode, $attributeValue); } else { return $this->___callPlugins('setCustomAttribute', func_get_args(), $pluginInfo); } }