Skip to content

Commit

Permalink
Update mutators.md with Ternary mutator (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidz committed Oct 30, 2020
1 parent 9580397 commit 8378b68
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/guide/mutators.md
Expand Up @@ -194,6 +194,7 @@ infection.json:
| :------: | :------: |:-------:|
| Spread | [...$collection, 2, 3] | [[...$collection][0], 2, 3] |
| FlipCoalesce | $foo ?? $bar | $bar ?? $foo |
| Ternary | isset($b) ? 'B' : 'C' | isset($b) ? 'C' : 'B' |

### Increments

Expand Down

0 comments on commit 8378b68

Please sign in to comment.