✏️ 正在编辑: code-quality.php
路径:
/opt/cpanel/ea-wappspector/vendor/rector/rector/config/set/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); };
💾 保存文件
← 返回文件管理器