rector/config/set/php82.php
Tomas Votruba f89782b964 Updated Rector to commit f134b6183e8c1a9cef0d69cb3255015c963d3c19
f134b6183e [Php71] Ensure return  only when catch of TryCatch removed on MultiExceptionCatchRector (#2350)
2022-05-23 03:50:09 +00:00

11 lines
310 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20220523;
use Rector\Config\RectorConfig;
use Rector\Php82\Rector\Class_\ReadOnlyClassRector;
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
$rectorConfig->rule(\Rector\Php82\Rector\Class_\ReadOnlyClassRector::class);
};