Skip to content

Commit 46f53be

Browse files
Merge pull request #61670 from nextcloud/carl/fix-rector-strict
fix(rector): Don't use AddSeeTestAnnotationRector in rector strict
2 parents 2e1e03d + 37af634 commit 46f53be

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

build/rector-strict.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
* SPDX-License-Identifier: AGPL-3.0-or-later
66
*/
77

8+
use Rector\PHPUnit\CodeQuality\Rector\Class_\AddSeeTestAnnotationRector;
9+
810
$nextcloudDir = dirname(__DIR__);
911

1012
return (require __DIR__ . '/rector-shared.php')
@@ -46,4 +48,6 @@
4648
symfonyConfigs: true,
4749
)->withPhpSets(
4850
php82: true,
49-
);
51+
)->withSkip([
52+
AddSeeTestAnnotationRector::class,
53+
]);

0 commit comments

Comments
 (0)