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