FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
shield/rector.php at develop · codeigniter4/shield · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
codeigniter4
/
shield
Public
Notifications
You must be signed in to change notification settings
Fork
144
Star
423
Code
Issues
5
Pull requests
12
Discussions
Actions
Projects
Security and quality
4
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
shield
/
rector.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
168 lines (146 loc) · 7.46 KB
Breadcrumbs
shield
/
rector.php
Copy path
File metadata and controls
168 lines (146 loc) · 7.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
declare
(strict_types=
1
);
/**
* This file is part of CodeIgniter Shield.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
use
Rector
\
Caching
\
ValueObject
\
Storage
\
FileCacheStorage
;
use
Rector
\
CodeQuality
\
Rector
\
BooleanAnd
\
SimplifyEmptyArrayCheckRector
;
use
Rector
\
CodeQuality
\
Rector
\
Class_
\
CompleteDynamicPropertiesRector
;
use
Rector
\
CodeQuality
\
Rector
\
Empty_
\
SimplifyEmptyCheckOnEmptyArrayRector
;
use
Rector
\
CodeQuality
\
Rector
\
Expression
\
InlineIfToExplicitIfRector
;
use
Rector
\
CodeQuality
\
Rector
\
FuncCall
\
ChangeArrayPushToArrayAssignRector
;
use
Rector
\
CodeQuality
\
Rector
\
FuncCall
\
SimplifyStrposLowerRector
;
use
Rector
\
CodeQuality
\
Rector
\
FuncCall
\
SingleInArrayToCompareRector
;
use
Rector
\
CodeQuality
\
Rector
\
FunctionLike
\
SimplifyUselessVariableRector
;
use
Rector
\
CodeQuality
\
Rector
\
If_
\
CombineIfRector
;
use
Rector
\
CodeQuality
\
Rector
\
If_
\
ExplicitBoolCompareRector
;
use
Rector
\
CodeQuality
\
Rector
\
If_
\
ShortenElseIfRector
;
use
Rector
\
CodeQuality
\
Rector
\
If_
\
SimplifyIfElseToTernaryRector
;
use
Rector
\
CodeQuality
\
Rector
\
If_
\
SimplifyIfReturnBoolRector
;
use
Rector
\
CodeQuality
\
Rector
\
Ternary
\
TernaryEmptyArrayArrayDimFetchToCoalesceRector
;
use
Rector
\
CodeQuality
\
Rector
\
Ternary
\
UnnecessaryTernaryExpressionRector
;
use
Rector
\
CodingStyle
\
Rector
\
ClassMethod
\
FuncGetArgsToVariadicParamRector
;
use
Rector
\
CodingStyle
\
Rector
\
ClassMethod
\
MakeInheritedMethodVisibilitySameAsParentRector
;
use
Rector
\
CodingStyle
\
Rector
\
FuncCall
\
VersionCompareFuncCallToConstantRector
;
use
Rector
\
Config
\
RectorConfig
;
use
Rector
\
DeadCode
\
Rector
\
Cast
\
RecastingRemovalRector
;
use
Rector
\
DeadCode
\
Rector
\
ClassMethod
\
RemoveUnusedPromotedPropertyRector
;
use
Rector
\
DeadCode
\
Rector
\
If_
\
UnwrapFutureCompatibleIfPhpVersionRector
;
use
Rector
\
DeadCode
\
Rector
\
MethodCall
\
RemoveNullArgOnNullDefaultParamRector
;
use
Rector
\
DeadCode
\
Rector
\
Property
\
RemoveUnusedPrivatePropertyRector
;
use
Rector
\
EarlyReturn
\
Rector
\
If_
\
ChangeIfElseValueAssignToEarlyReturnRector
;
use
Rector
\
EarlyReturn
\
Rector
\
If_
\
RemoveAlwaysElseRector
;
use
Rector
\
EarlyReturn
\
Rector
\
Return_
\
PreparedValueToEarlyReturnRector
;
use
Rector
\
Php55
\
Rector
\
String_
\
StringClassNameToClassConstantRector
;
use
Rector
\
Php73
\
Rector
\
FuncCall
\
StringifyStrNeedlesRector
;
use
Rector
\
PHPUnit
\
AnnotationsToAttributes
\
Rector
\
Class_
\
AnnotationWithValueToAttributeRector
;
use
Rector
\
PHPUnit
\
CodeQuality
\
Rector
\
Class_
\
YieldDataProviderRector
;
use
Rector
\
PHPUnit
\
CodeQuality
\
Rector
\
MethodCall
\
AssertEmptyNullableObjectToAssertInstanceofRector
;
use
Rector
\
PHPUnit
\
Set
\
PHPUnitSetList
;
use
Rector
\
Privatization
\
Rector
\
Property
\
PrivatizeFinalClassPropertyRector
;
use
Rector
\
Set
\
ValueObject
\
LevelSetList
;
use
Rector
\
Set
\
ValueObject
\
SetList
;
use
Rector
\
TypeDeclaration
\
Rector
\
Empty_
\
EmptyOnNullableObjectToInstanceOfRector
;
use
Rector
\
ValueObject
\
PhpVersion
;
return
static
function
(
RectorConfig
$
rectorConfig
):
void
{
$
rectorConfig
->
sets
([
SetList::
DEAD_CODE
,
LevelSetList::
UP_TO_PHP_81
,
PHPUnitSetList::
PHPUNIT_CODE_QUALITY
,
PHPUnitSetList::
COMPOSER_BASED
,
]);
$
rectorConfig
->
parallel
();
// Github action cache
$
rectorConfig
->
cacheClass
(FileCacheStorage::class);
if
(
is_dir
(
'
/tmp
'
)) {
$
rectorConfig
->
cacheDirectory
(
'
/tmp/rector
'
);
}
// The paths to refactor (can also be supplied with CLI arguments)
$
rectorConfig
->
paths
([
__DIR__
.
'
/src/
'
,
__DIR__
.
'
/tests/
'
,
]);
// Include Composer's autoload - required for global execution, remove if running locally
$
rectorConfig
->
autoloadPaths
([
__DIR__
.
'
/vendor/autoload.php
'
,
]);
// Do you need to include constants, class aliases, or a custom autoloader?
$
rectorConfig
->
bootstrapFiles
([
realpath
(
getcwd
()) .
'
/vendor/codeigniter4/framework/system/Test/bootstrap.php
'
,
]);
$
rectorConfig
->
phpstanConfigs
([
__DIR__
.
'
/phpstan.neon.dist
'
,
__DIR__
.
'
/vendor/codeigniter/phpstan-codeigniter/extension.neon
'
,
__DIR__
.
'
/vendor/phpstan/phpstan-strict-rules/rules.neon
'
,
]);
// Set the target version for refactoring
$
rectorConfig
->
phpVersion
(PhpVersion::
PHP_81
);
// Auto-import fully qualified class names
$
rectorConfig
->
importNames
();
// Are there files or rules you need to skip?
$
rectorConfig
->
skip
([
__DIR__
.
'
/src/Views
'
,
StringifyStrNeedlesRector::class,
YieldDataProviderRector::class,
// Note: requires php 8
RemoveUnusedPromotedPropertyRector::class,
AnnotationWithValueToAttributeRector::class,
// May load view files directly when detecting classes
StringClassNameToClassConstantRector::class,
// Ignore tests that use CodeIgniter::CI_VERSION
UnwrapFutureCompatibleIfPhpVersionRector::class => [
__DIR__
.
'
/src/Test/MockInputOutput.php
'
,
__DIR__
.
'
/tests/Authentication/Authenticators/SessionAuthenticatorTest.php
'
,
__DIR__
.
'
/tests/Commands/SetupTest.php
'
,
__DIR__
.
'
/tests/Commands/UserModelGeneratorTest.php
'
,
__DIR__
.
'
/tests/Controllers/ActionsTest.php
'
,
__DIR__
.
'
/tests/Controllers/LoginTest.php
'
,
__DIR__
.
'
/tests/Controllers/MagicLinkTest.php
'
,
],
RemoveUnusedPrivatePropertyRector::class => [
__DIR__
.
'
/src/Test/MockInputOutput.php
'
,
__DIR__
.
'
/tests/Commands/SetupTest.php
'
,
__DIR__
.
'
/tests/Commands/UserModelGeneratorTest.php
'
,
__DIR__
.
'
/tests/Controllers/LoginTest.php
'
,
],
RecastingRemovalRector::class => [
// To check old Email Config file
__DIR__
.
'
/src/Commands/Setup.php
'
,
],
// Ignore some PHPUnit rules
AssertEmptyNullableObjectToAssertInstanceofRector::class,
// Ignore for readability
RemoveNullArgOnNullDefaultParamRector::class,
]);
// auto import fully qualified class names
$
rectorConfig
->
importNames
();
$
rectorConfig
->
rule
(SimplifyUselessVariableRector::class);
$
rectorConfig
->
rule
(RemoveAlwaysElseRector::class);
$
rectorConfig
->
rule
(ChangeIfElseValueAssignToEarlyReturnRector::class);
$
rectorConfig
->
rule
(SimplifyStrposLowerRector::class);
$
rectorConfig
->
rule
(CombineIfRector::class);
$
rectorConfig
->
rule
(SimplifyIfReturnBoolRector::class);
$
rectorConfig
->
rule
(InlineIfToExplicitIfRector::class);
$
rectorConfig
->
rule
(PreparedValueToEarlyReturnRector::class);
$
rectorConfig
->
rule
(ShortenElseIfRector::class);
$
rectorConfig
->
rule
(SimplifyIfElseToTernaryRector::class);
$
rectorConfig
->
rule
(ChangeArrayPushToArrayAssignRector::class);
$
rectorConfig
->
rule
(UnnecessaryTernaryExpressionRector::class);
$
rectorConfig
->
rule
(FuncGetArgsToVariadicParamRector::class);
$
rectorConfig
->
rule
(MakeInheritedMethodVisibilitySameAsParentRector::class);
$
rectorConfig
->
rule
(SimplifyEmptyArrayCheckRector::class);
$
rectorConfig
->
rule
(SimplifyEmptyCheckOnEmptyArrayRector::class);
$
rectorConfig
->
rule
(TernaryEmptyArrayArrayDimFetchToCoalesceRector::class);
$
rectorConfig
->
rule
(EmptyOnNullableObjectToInstanceOfRector::class);
$
rectorConfig
->
rule
(StringClassNameToClassConstantRector::class);
$
rectorConfig
->
rule
(PrivatizeFinalClassPropertyRector::class);
$
rectorConfig
->
rule
(CompleteDynamicPropertiesRector::class);
$
rectorConfig
->
rule
(SingleInArrayToCompareRector::class);
$
rectorConfig
->
rule
(VersionCompareFuncCallToConstantRector::class);
$
rectorConfig
->
rule
(ExplicitBoolCompareRector::class);
};
Back
|
FazBrowse Home
|
New Git URL