l10n->t('Random generator'); } public function getCategory(): string { return 'security'; } public function run(): SetupResult { try { $this->secureRandom->generate(1); } catch (\Exception $ex) { return SetupResult::error( $this->l10n->t('No suitable source for randomness found by PHP which is highly discouraged for security reasons.'), $this->urlGenerator->linkToDocs('admin-security') ); } return SetupResult::success($this->l10n->t('Secure')); } }