📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 14:42:59
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
config
/
set
✏️
Editing: code-quality.php
<?php declare (strict_types=1); namespace RectorPrefix202411; use Rector\Config\Level\CodeQualityLevel; use Rector\Config\RectorConfig; return static function (RectorConfig $rectorConfig) : void { foreach (CodeQualityLevel::RULES_WITH_CONFIGURATION as $rectorClass => $configuration) { $rectorConfig->ruleWithConfiguration($rectorClass, $configuration); } // the rule order matters, as its used in withCodeQualityLevel() method // place the safest rules first, follow by more complex ones $rectorConfig->rules(CodeQualityLevel::RULES); };
💾 Save Changes
❌ Cancel