/** * {@inheritdoc} */ public function setHttpResponseCode($httpCode) { $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setHttpResponseCode'); if (!$pluginInfo) { return parent::setHttpResponseCode($httpCode); } else { return $this->___callPlugins('setHttpResponseCode', func_get_args(), $pluginInfo); } }