MCPcopy Create free account
hub / github.com/PHPantom-dev/phpantom_lsp / phpdocVirtualMembers

Method phpdocVirtualMembers

examples/laravel/app/Demo.php:223–232  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) ────────────────────────

Callers

nothing calls this directly

Calls 2

whereMethod · 0.80
firstMethod · 0.45

Tested by

no test coverage detected