From 036f2de795e84d3c48475133b05184e8904ee6c1 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 16 Sep 2022 11:27:42 +0100 Subject: [PATCH] Removes non-used configuration --- rector.php | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 rector.php diff --git a/rector.php b/rector.php deleted file mode 100644 index 7300adcd..00000000 --- a/rector.php +++ /dev/null @@ -1,28 +0,0 @@ -paths([ - __DIR__.'/bin', - __DIR__.'/src', - ]); - - $rectorConfig->rules([ - InlineConstructorDefaultToPropertyRector::class, - ]); - - $rectorConfig->sets([ - LevelSetList::UP_TO_PHP_81, - SetList::CODE_QUALITY, - SetList::DEAD_CODE, - SetList::EARLY_RETURN, - SetList::TYPE_DECLARATION, - SetList::PRIVATIZATION, - ]); -};