From 3831d971b05d5a5d0595220bb5a1f5c03b895cef Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 1 Sep 2026 10:32:03 +0200 Subject: [PATCH] feat: Allow tracking for Nextcloud 36 Signed-off-by: Joas Schilling --- src/Set/NextcloudSets.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Set/NextcloudSets.php b/src/Set/NextcloudSets.php index 43e2ed6..ed4bd71 100644 --- a/src/Set/NextcloudSets.php +++ b/src/Set/NextcloudSets.php @@ -28,4 +28,6 @@ final class NextcloudSets public const NEXTCLOUD_34 = self::NEXTCLOUD_33; /** @psalm-api */ public const NEXTCLOUD_35 = __DIR__ . '/../../config/nextcloud-35/nextcloud-35-deprecations.php'; + /** @psalm-api */ + public const NEXTCLOUD_36 = self::NEXTCLOUD_35; }