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