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 7188ba6 commit 3587b00Copy full SHA for 3587b00
2 files changed
phpstan.neon
@@ -408,3 +408,8 @@ parameters:
408
-
409
identifier: rector.noOnlyNullReturnInRefactor
410
path: rules/TypeDeclaration/Rector/StmtsAwareInterface/DeclareStrictTypesRector.php
411
+
412
+ # handle next with FileNode
413
+ -
414
+ identifier: method.parentMethodFinalByPhpDoc
415
+ path: rules/TypeDeclaration/Rector/StmtsAwareInterface/DeclareStrictTypesRector.php
src/Rector/AbstractRector.php
@@ -106,6 +106,10 @@ public function autowire(
106
}
107
108
/**
109
+ * @final Avoid override to prevent unintended side-effects. Use enterNode() or @see \Rector\Contract\PhpParser\DecoratingNodeVisitorInterface instead.
110
+ *
111
+ * @internal
112
113
* @return Node[]|null
114
*/
115
public function beforeTraverse(array $nodes): ?array
0 commit comments