()
| 845 | class ObjectShapeDemo |
| 846 | { |
| 847 | public function demo(): void |
| 848 | { |
| 849 | /** @var object{title: string, score: float} $item */ |
| 850 | $item = getUnknownValue(); |
| 851 | $item->title; // Ctrl+Click → jumps to `title:` in docblock above |
| 852 | $item->score; // Ctrl+Click → jumps to `score:` in docblock above |
| 853 | } |
| 854 | } |
| 855 | |
| 856 |
nothing calls this directly
no test coverage detected