diff --git a/src/guide/mutators.md b/src/guide/mutators.md index d28e589d..4751c2a8 100644 --- a/src/guide/mutators.md +++ b/src/guide/mutators.md @@ -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