mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 05:48:21 +01:00
6c20d257e3
d3d18d442c
keep relative paths
11 lines
265 B
PHP
11 lines
265 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202209;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Php82\Rector\Class_\ReadOnlyClassRector;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rule(ReadOnlyClassRector::class);
|
|
};
|