ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
code_quality.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
use
Rector\Config\RectorConfig
;
6
use
Rector\Core\ValueObject\PhpVersion
;
7
use
Rector\Set\ValueObject\SetList
;
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
};
RectorConfig
SetList
PhpVersion
CI
Rector
code_quality.php
Generated on Wed Sep 10 2025 14:10:28 for ILIAS by
1.8.13 (using
Doxyfile
)