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