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