ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
code_quality.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
8 
9 return static function (RectorConfig $rectorConfig): void {
10  $rectorConfig->disableParallel();
11  $rectorConfig->phpVersion(PhpVersion::PHP_80);
12  $rectorConfig->sets([
13  SetList::DEAD_CODE,
14  SetList::TYPE_DECLARATION,
15  SetList::CODE_QUALITY,
16  SetList::EARLY_RETURN,
17  ]);
18 };