File tree 2 files changed +30
-6
lines changed
2 files changed +30
-6
lines changed Original file line number Diff line number Diff line change 98
98
"LogicalAndSingleSubExprNegation" : true ,
99
99
"LogicalLowerAnd" : true ,
100
100
"LogicalLowerOr" : true ,
101
- "LogicalNot" : true ,
101
+ "LogicalNot" : {
102
+ "ignore" : [
103
+ "Nexus\\Password\\Hash\\Pbkdf2Hash::verify"
104
+ ]
105
+ } ,
102
106
"LogicalOr" : true ,
103
107
"LogicalOrAllSubExprNegation" : true ,
104
108
"LogicalOrNegation" : true ,
138
142
"SpreadRemoval" : true ,
139
143
"Ternary" : true ,
140
144
"This" : true ,
141
- "Throw_" : true ,
145
+ "Throw_" : {
146
+ "ignore" : [
147
+ "Nexus\\Encryption\\Key::__unserialize"
148
+ ]
149
+ } ,
142
150
"TrueValue" : {
143
151
"ignore" : [
144
152
"Nexus\\Collection\\Collection::generateDiffHashTable"
Original file line number Diff line number Diff line change 16
16
use Infection \Mutator \ProfileList ;
17
17
use Nexus \Clock \SystemClock ;
18
18
use Nexus \Collection \Collection ;
19
+ use Nexus \Encryption \Key ;
20
+ use Nexus \Password \Hash \Pbkdf2Hash ;
19
21
use Nexus \Password \Hash \SodiumHash ;
20
22
21
23
/**
@@ -64,13 +66,27 @@ final class InfectionConfigBuilder
64
66
Collection::class.'::filterWithKey ' ,
65
67
Collection::class.'::reject ' ,
66
68
],
67
- 'CastInt ' => [SystemClock::class],
69
+ 'CastInt ' => [
70
+ SystemClock::class,
71
+ ],
68
72
'CastString ' => [
69
73
Collection::class.'::toArrayKey ' ,
70
74
],
71
- 'Division ' => [SystemClock::class],
72
- 'LogicalAnd ' => [SodiumHash::class.'::valid ' ],
73
- 'ModEqual ' => [SystemClock::class],
75
+ 'Division ' => [
76
+ SystemClock::class,
77
+ ],
78
+ 'LogicalAnd ' => [
79
+ SodiumHash::class.'::valid ' ,
80
+ ],
81
+ 'LogicalNot ' => [
82
+ Pbkdf2Hash::class . '::verify '
83
+ ],
84
+ 'ModEqual ' => [
85
+ SystemClock::class,
86
+ ],
87
+ 'Throw_ ' => [
88
+ Key::class.'::__unserialize ' ,
89
+ ],
74
90
'TrueValue ' => [
75
91
Collection::class.'::generateDiffHashTable ' ,
76
92
],
You can’t perform that action at this time.
0 commit comments