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