/** * {@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); } }