refactoring

This commit is contained in:
Roland Gruber 2024-06-18 20:30:23 +02:00
parent 9a2eac885f
commit 0dc1d2e1b8

View file

@ -1,6 +1,7 @@
<?php <?php
use Rector\Config\RectorConfig; use Rector\Config\RectorConfig;
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
use Rector\Set\ValueObject\LevelSetList; use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList; use Rector\Set\ValueObject\SetList;
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector; use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
@ -18,7 +19,8 @@ return RectorConfig::configure()
]) ])
->withSkip([ ->withSkip([
__DIR__ . '/lam/lib/3rdParty', __DIR__ . '/lam/lib/3rdParty',
NullToStrictStringFuncCallArgRector::class NullToStrictStringFuncCallArgRector::class,
ReadOnlyPropertyRector::class
]) ])
->withFileExtensions([ ->withFileExtensions([
'php', 'php',