mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 06:18:07 +01:00
503a6059f8
a8922f7431
skip temporarily match + throws downagrade in symfony/console, very unlikely to run
11 lines
276 B
PHP
11 lines
276 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Privatization\Rector\Class_\FinalizeClassesWithoutChildrenRector;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->rule(FinalizeClassesWithoutChildrenRector::class);
|
|
};
|