File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77use Rector \Caching \ValueObject \Storage \FileCacheStorage ;
88use Rector \CodeQuality \Rector \Class_ \InlineConstructorDefaultToPropertyRector ;
9+ use Rector \CodingStyle \Rector \ArrowFunction \ArrowFunctionDelegatingCallToFirstClassCallableRector ;
910use Rector \Config \RectorConfig ;
1011use Rector \Php80 \Rector \Class_ \ClassPropertyAssignToConstructorPromotionRector ;
1112use Rector \Php83 \Rector \ClassMethod \AddOverrideAttributeToOverriddenMethodsRector ;
2021 // register a single rule
2122 $ config ->rule (InlineConstructorDefaultToPropertyRector::class);
2223
23- $ config ->skip ([AddOverrideAttributeToOverriddenMethodsRector::class]);
24+ $ config ->skip ([
25+ AddOverrideAttributeToOverriddenMethodsRector::class,
26+ ArrowFunctionDelegatingCallToFirstClassCallableRector::class => [
27+ __DIR__ . '/tests/Core/Serialize/Resolver/FormatValueTest.php ' ,
28+ ],
29+ ]);
2430 $ config ->skip ([
2531 ClassPropertyAssignToConstructorPromotionRector::class => [
2632 __DIR__ . '/tests/Stub/Variety.php ' ,
You can’t perform that action at this time.
0 commit comments