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