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