-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrector.php
More file actions
26 lines (23 loc) · 884 Bytes
/
rector.php
File metadata and controls
26 lines (23 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([
// __DIR__ . '/assets',
// __DIR__ . '/config',
// __DIR__ . '/public',
__DIR__ . '/src',
__DIR__ . '/tests',
])
// uncomment to reach your current PHP version
->withPhpVersion(Rector\ValueObject\PhpVersion::PHP_84)
->withRules([
\Rector\TypeDeclaration\Rector\ClassMethod\AddVoidReturnTypeWhereNoReturnRector::class,
\Rector\TypeDeclaration\Rector\Property\TypedPropertyFromAssignsRector::class,
Rector\Php84\Rector\Param\ExplicitNullableParamTypeRector::class,
\Rector\TypeDeclaration\Rector\ClassMethod\ReturnTypeFromStrictTypedPropertyRector::class,
])
->withPhpSets(php84: true)
->withTypeCoverageLevel(10)
->withDeadCodeLevel(0)
->withCodeQualityLevel(0);