-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrector.php
More file actions
29 lines (26 loc) · 944 Bytes
/
Copy pathrector.php
File metadata and controls
29 lines (26 loc) · 944 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
27
28
29
<?php
use Rector\CodeQuality\Rector\Identical\FlipTypeControlToUseExclusiveTypeRector;
use Rector\Config\RectorConfig;
use Rector\TypeDeclaration\Rector\StmtsAwareInterface\SafeDeclareStrictTypesRector;
return RectorConfig::configure()
->withPaths([
__DIR__.'/config',
__DIR__.'/src',
__DIR__.'/tests',
])
->withSkip([
// The token of a captcha is passed around the way it came in, where a
// numeric string standing in for a number is normal.
SafeDeclareStrictTypesRector::class,
// Turns `$model !== null` into `$model instanceof Model` where the
// parameter already declares `Model|null`, which reads worse.
FlipTypeControlToUseExclusiveTypeRector::class,
])
->withPreparedSets(
deadCode: true,
codeQuality: true,
typeDeclarations: true,
privatization: true,
earlyReturn: true,
)
->withPhpSets();