Skip to content

Commit 29e31e2

Browse files
committed
Changed Rector configuration
1 parent fe440ec commit 29e31e2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

rector.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616

1717
return static function (RectorConfig $rectorConfig): void {
1818
$rectorConfig->paths([
19-
//__DIR__ . '/config',
20-
//__DIR__ . '/migrations',
21-
//__DIR__ . '/public',
22-
//__DIR__ . '/src',
19+
__DIR__ . '/config',
20+
__DIR__ . '/migrations',
21+
__DIR__ . '/public',
22+
__DIR__ . '/src',
2323
/**
2424
* First run some rule(s) or sets to whole codebase and
2525
* run all the tests (phpunit, ecs, psalm and phpstan),
@@ -29,15 +29,15 @@
2929
* After that enable this directory and run rector again
3030
* and do that whole process again.
3131
*/
32-
__DIR__ . '/tests',
32+
//__DIR__ . '/tests',
3333
]);
3434

3535
// Enable single or multiple rules with rector
3636
//$rectorConfig->rule(InlineConstructorDefaultToPropertyRector::class);
3737

3838
// Enable the set(s) that you want to run with rector
3939
$rectorConfig->sets([
40-
LevelSetList::UP_TO_PHP_82, // This is for PHP version upgrade
40+
LevelSetList::UP_TO_PHP_83, // This is for PHP version upgrade
4141
//PHPUnitSetList::PHPUNIT_100,
4242
//SymfonyLevelSetList::UP_TO_SYMFONY_62, // This is for Symfony version upgrade
4343
]);

0 commit comments

Comments
 (0)