コード例 #1
0
ファイル: Interceptor.php プロジェクト: rustamveer/magento2
 /**
  * {@inheritdoc}
  */
 public function getCurrentStore()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getCurrentStore');
     if (!$pluginInfo) {
         return parent::getCurrentStore();
     } else {
         return $this->___callPlugins('getCurrentStore', func_get_args(), $pluginInfo);
     }
 }