We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7284701 commit 82c22ecCopy full SHA for 82c22ec
src/contracts/Sets/ibexa-50.php
@@ -25,6 +25,7 @@
25
use Rector\Renaming\ValueObject\RenameClassAndConstFetch;
26
use Rector\Renaming\ValueObject\RenameClassConstFetch;
27
use Rector\Renaming\ValueObject\RenameProperty;
28
+use Rector\Symfony\Symfony62\Rector\MethodCall\SimplifyFormRenderingRector;
29
30
return static function (RectorConfig $rectorConfig): void {
31
// List of rector rules to upgrade Ibexa projects to Ibexa DXP 5.0
@@ -305,4 +306,11 @@
305
306
),
307
]
308
);
309
+
310
+ $rectorConfig->skip(
311
+ [
312
+ // skip removing `createView` method call from `Form` objects, per SF 7 recommendation
313
+ SimplifyFormRenderingRector::class,
314
+ ]
315
+ );
316
};
0 commit comments