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