updrade with rector

This commit is contained in:
2022-05-03 14:52:04 +02:00
parent d1e613ecc6
commit 6e30560cb9
135 changed files with 5609 additions and 4008 deletions
.env.gitignore.php-cs-fixer.cache.php-cs-fixer.php
assets
composer.jsoncomposer.lock
config
migrations
package.json
public/uploads
rector.php
src
symfony.lock
templates
tools/php-cs-fixer
webpack.config.jsyarn.lock

21
rector.php Normal file

@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths(paths: [
__DIR__ . '/src'
]);
// register a single rule
$rectorConfig->rule(rectorClass: InlineConstructorDefaultToPropertyRector::class);
// define sets of rules
// $rectorConfig->sets([
// LevelSetList::UP_TO_PHP_80
// ]);
};