From 7ee98d2cc5d99efd15d704326843fb7593513508 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 8 Oct 2025 19:34:24 -0400 Subject: [PATCH] chore: streamline class docblock a bit Signed-off-by: Josh --- apps/settings/lib/SetupChecks/SecurityHeaders.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/settings/lib/SetupChecks/SecurityHeaders.php b/apps/settings/lib/SetupChecks/SecurityHeaders.php index dbcfb37a9e3..322c3edddc8 100644 --- a/apps/settings/lib/SetupChecks/SecurityHeaders.php +++ b/apps/settings/lib/SetupChecks/SecurityHeaders.php @@ -22,14 +22,11 @@ use Psr\Log\LoggerInterface; * Class SecurityHeaders * * Performs setup checks to verify that essential HTTP security headers are correctly configured - * on the Nextcloud instance. This includes validating headers such as X-Content-Type-Options, - * X-Robots-Tag, X-Frame-Options, X-Permitted-Cross-Domain-Policies, Referrer-Policy, and - * Strict-Transport-Security. The check issues warnings or informational messages if recommended + * on the Nextcloud instance. The check issues warnings or informational messages if recommended * security headers are missing, malformed, or set to unsafe values. * * This class is used by the Nextcloud setup process to ensure that the web server delivers - * responses with proper security headers, helping to protect against common web vulnerabilities - * such as clickjacking, MIME sniffing, and information leakage. + * responses with proper security headers, helping to protect against common web vulnerabilities. */ class SecurityHeaders implements ISetupCheck {