()
| 2219 | class TernaryNarrowingDemo |
| 2220 | { |
| 2221 | public function demo(): void |
| 2222 | { |
| 2223 | $thing = pickRockOrBanana(); |
| 2224 | $thing instanceof Rock ? $thing->crush() : $thing->peel(); |
| 2225 | } |
| 2226 | } |
| 2227 | |
| 2228 |
nothing calls this directly
no test coverage detected