()
| 221 | // • Rename Symbol — renames in the docblock AND all usage sites |
| 222 | |
| 223 | public function phpdocVirtualMembers(): void |
| 224 | { |
| 225 | $author = new BlogAuthor(); |
| 226 | $author->displayName; // @property-read on BlogAuthor |
| 227 | $author->bio(); // @method on BlogAuthor |
| 228 | |
| 229 | $found = BlogAuthor::where('active', true)->first(); |
| 230 | $found->displayName; |
| 231 | $found->bio(); |
| 232 | } |
| 233 | |
| 234 | |
| 235 | // ── Laravel Config (definition & references) ──────────────────────── |