Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/Set/NextcloudSets.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,24 @@

final class NextcloudSets
{
/** @psalm-api */
public const NEXTCLOUD_25 = __DIR__ . '/../../config/nextcloud-25/nextcloud-25-deprecations.php';
/** @psalm-api */
public const NEXTCLOUD_26 = __DIR__ . '/../../config/nextcloud-26/nextcloud-26-deprecations.php';
/** @psalm-api */
public const NEXTCLOUD_27 = __DIR__ . '/../../config/nextcloud-27/nextcloud-27-deprecations.php';
/** @psalm-api */
public const NEXTCLOUD_28 = self::NEXTCLOUD_27;
/** @psalm-api */
public const NEXTCLOUD_29 = __DIR__ . '/../../config/nextcloud-29/nextcloud-29-deprecations.php';
/** @psalm-api */
public const NEXTCLOUD_30 = self::NEXTCLOUD_29;
/** @psalm-api */
public const NEXTCLOUD_31 = self::NEXTCLOUD_30;
/** @psalm-api */
public const NEXTCLOUD_32 = self::NEXTCLOUD_31;
/** @psalm-api */
public const NEXTCLOUD_33 = __DIR__ . '/../../config/nextcloud-33/nextcloud-33-deprecations.php';
/** @psalm-api */
public const NEXTCLOUD_34 = self::NEXTCLOUD_33;
}