Skip to content

Commit fd36425

Browse files
Merge pull request #79 from nextcloud-libraries/bugfix/noid/add-34-to-rector
fix: Add Nextcloud 34 as rector set and mark them as API so IDE signals usage
2 parents 9475fe6 + d81c5ba commit fd36425

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/Set/NextcloudSets.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66

77
final class NextcloudSets
88
{
9+
/** @psalm-api */
910
public const NEXTCLOUD_25 = __DIR__ . '/../../config/nextcloud-25/nextcloud-25-deprecations.php';
11+
/** @psalm-api */
1012
public const NEXTCLOUD_26 = __DIR__ . '/../../config/nextcloud-26/nextcloud-26-deprecations.php';
13+
/** @psalm-api */
1114
public const NEXTCLOUD_27 = __DIR__ . '/../../config/nextcloud-27/nextcloud-27-deprecations.php';
15+
/** @psalm-api */
1216
public const NEXTCLOUD_28 = self::NEXTCLOUD_27;
17+
/** @psalm-api */
1318
public const NEXTCLOUD_29 = __DIR__ . '/../../config/nextcloud-29/nextcloud-29-deprecations.php';
19+
/** @psalm-api */
1420
public const NEXTCLOUD_30 = self::NEXTCLOUD_29;
21+
/** @psalm-api */
1522
public const NEXTCLOUD_31 = self::NEXTCLOUD_30;
23+
/** @psalm-api */
1624
public const NEXTCLOUD_32 = self::NEXTCLOUD_31;
25+
/** @psalm-api */
1726
public const NEXTCLOUD_33 = __DIR__ . '/../../config/nextcloud-33/nextcloud-33-deprecations.php';
27+
/** @psalm-api */
28+
public const NEXTCLOUD_34 = self::NEXTCLOUD_33;
1829
}

0 commit comments

Comments
 (0)