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