Skip to content

Commit cd60163

Browse files
committed
Update TrinaryLogicMutator.php
1 parent e102753 commit cd60163

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Infection/TrinaryLogicMutator.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ public static function getDefinition(): Definition
1919
{
2020
return new Definition(
2121
<<<'TXT'
22-
Replaces TrinaryLogic->yes() with !TrinaryLogic->no()
23-
TXT
22+
Replaces TrinaryLogic->yes() with !TrinaryLogic->no()
23+
TXT
2424
,
2525
MutatorCategory::ORTHOGONAL_REPLACEMENT,
2626
null,
2727
<<<'DIFF'
28-
- $type->isBoolean()->yes();
29-
+ !$type->isBoolean()->no();
30-
DIFF,
28+
- $type->isBoolean()->yes();
29+
+ !$type->isBoolean()->no();
30+
DIFF,
3131
);
3232
}
3333

0 commit comments

Comments
 (0)