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