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 2984cc1 commit 3dfa9fbCopy full SHA for 3dfa9fb
src/Reporting/DeprecatedRulesReporter.php
@@ -4,6 +4,7 @@
4
5
namespace Rector\Reporting;
6
7
+use Rector\PhpParser\Enum\NodeGroup;
8
use Rector\Configuration\Deprecation\Contract\DeprecatedInterface;
9
use Rector\Configuration\Option;
10
use Rector\Configuration\Parameter\SimpleParameterProvider;
@@ -76,7 +77,7 @@ public function reportDeprecatedNodeTypes(): void
76
77
'Rector rule "%s" uses StmtsAwareInterface that is now deprecated.%sUse "%s::%s" instead.%sSee %s for more',
78
$rector::class,
79
PHP_EOL,
- \Rector\PhpParser\Enum\NodeGroup::class,
80
+ NodeGroup::class,
81
'STMTS_AWARE',
82
PHP_EOL . PHP_EOL,
83
'https://github.com/rectorphp/rector-src/pull/7679'
0 commit comments