From 6c127e2fddd2970ce65eda92d5c5fb9a4a037009 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Wed, 30 Apr 2025 14:20:12 +0200 Subject: [PATCH] chore(Constants): Sort by value Signed-off-by: provokateurin --- lib/public/Constants.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/public/Constants.php b/lib/public/Constants.php index 62772d195b2..8d38ade7baf 100644 --- a/lib/public/Constants.php +++ b/lib/public/Constants.php @@ -17,12 +17,6 @@ namespace OCP; * @since 8.0.0 */ class Constants { - /** - * CRUDS permissions. - * @since 8.0.0 - */ - public const PERMISSION_CREATE = 4; - /** * @since 8.0.0 */ @@ -33,6 +27,12 @@ class Constants { */ public const PERMISSION_UPDATE = 2; + /** + * CRUDS permissions. + * @since 8.0.0 + */ + public const PERMISSION_CREATE = 4; + /** * @since 8.0.0 */