File tree Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Expand file tree Collapse file tree 2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 9898 "LogicalAndSingleSubExprNegation" : true ,
9999 "LogicalLowerAnd" : true ,
100100 "LogicalLowerOr" : true ,
101- "LogicalNot" : true ,
101+ "LogicalNot" : {
102+ "ignore" : [
103+ "Nexus\\Password\\Hash\\Pbkdf2Hash::verify"
104+ ]
105+ } ,
102106 "LogicalOr" : true ,
103107 "LogicalOrAllSubExprNegation" : true ,
104108 "LogicalOrNegation" : true ,
Original file line number Diff line number Diff line change 1616use Infection \Mutator \ProfileList ;
1717use Nexus \Clock \SystemClock ;
1818use Nexus \Collection \Collection ;
19+ use Nexus \Password \Hash \Pbkdf2Hash ;
1920use Nexus \Password \Hash \SodiumHash ;
2021
2122/**
@@ -63,13 +64,24 @@ final class InfectionConfigBuilder
6364 Collection::class.'::filterWithKey ' ,
6465 Collection::class.'::reject ' ,
6566 ],
66- 'CastInt ' => [SystemClock::class],
67+ 'CastInt ' => [
68+ SystemClock::class,
69+ ],
6770 'CastString ' => [
6871 Collection::class.'::toArrayKey ' ,
6972 ],
70- 'Division ' => [SystemClock::class],
71- 'LogicalAnd ' => [SodiumHash::class.'::valid ' ],
72- 'ModEqual ' => [SystemClock::class],
73+ 'Division ' => [
74+ SystemClock::class,
75+ ],
76+ 'LogicalAnd ' => [
77+ SodiumHash::class.'::valid ' ,
78+ ],
79+ 'LogicalNot ' => [
80+ Pbkdf2Hash::class.'::verify ' ,
81+ ],
82+ 'ModEqual ' => [
83+ SystemClock::class,
84+ ],
7385 'TrueValue ' => [
7486 Collection::class.'::generateDiffHashTable ' ,
7587 ],
You can’t perform that action at this time.
0 commit comments