You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: DashboardController uses docblock-style annotations (@NoAdminRequired) instead of PHP 8 attributes (#[NoAdminRequired]). All other controllers in the app use the PHP 8 attribute form. Docblock annotations are deprecated as of Nextcloud 28+ and will eventually stop being processed.
Suggested fix:
Replace the docblock annotations on DashboardController with their PHP 8 attribute equivalents (#[NoAdminRequired], #[PublicPage] where applicable) to be consistent with the rest of the codebase.
Severity: LOW
Location:
lib/Controller/DashboardController.php:55-56, 74-75Description:
DashboardControlleruses docblock-style annotations (@NoAdminRequired) instead of PHP 8 attributes (#[NoAdminRequired]). All other controllers in the app use the PHP 8 attribute form. Docblock annotations are deprecated as of Nextcloud 28+ and will eventually stop being processed.Suggested fix:
Replace the docblock annotations on
DashboardControllerwith their PHP 8 attribute equivalents (#[NoAdminRequired],#[PublicPage]where applicable) to be consistent with the rest of the codebase.Source: deep team-reviewer pass 2026-05-27