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