()
| 137 | class VarDocblockDemo |
| 138 | { |
| 139 | public function demo(): void |
| 140 | { |
| 141 | /** @var Pencil $inlineHinted */ |
| 142 | $inlineHinted = getUnknownValue(); |
| 143 | $inlineHinted->sketch(); |
| 144 | |
| 145 | /** @var Pen */ |
| 146 | $hinted = getUnknownValue(); |
| 147 | $hinted->write(); // without variable name (PHPStorm fails this) |
| 148 | } |
| 149 | } |
| 150 | |
| 151 |
nothing calls this directly
no test coverage detected