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