diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2024-07-29 11:37:40 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2024-07-29 11:37:40 -0100 |
commit | dd0099c69fdca7d55c6f52e2df1be7f23a630549 (patch) | |
tree | 4176f00879a89b675969a8c61d6793d5cf56b04a /apps/theming | |
parent | 13d2b676743c6d132b361fd0ff5923bc1f1897c0 (diff) | |
download | nextcloud-server-dd0099c69fdca7d55c6f52e2df1be7f23a630549.tar.gz nextcloud-server-dd0099c69fdca7d55c6f52e2df1be7f23a630549.zip |
fix(psalm): named attribute argument
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index 4d968abf619..73ef78c7a8e 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -423,7 +423,7 @@ class ThemingController extends Controller { */ #[PublicPage] #[NoCSRFRequired] - #[BruteForceProtection('manifest')] + #[BruteForceProtection(action: 'manifest')] public function getManifest(string $app): JSONResponse { $cacheBusterValue = $this->config->getAppValue('theming', 'cachebuster', '0'); if ($app === 'core' || $app === 'settings') { |