MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / class_has_magic_call

Function class_has_magic_call

internal/cbm/lsp/php_lsp.c:421–424  ·  view source on GitHub ↗

Detect a __call / __callStatic on a class chain. */

Source from the content-addressed store, hash-verified

419
420/* Detect a __call / __callStatic on a class chain. */
421static bool class_has_magic_call(PHPLSPContext *ctx, const char *class_qn, bool is_static) {
422 const char *magic = is_static ? "__callStatic" : "__call";
423 return php_lookup_method(ctx, class_qn, magic) != NULL;
424}
425
426/* ── type parsing ───────────────────────────────────────────────── */
427

Callers 1

resolve_member_callFunction · 0.85

Calls 1

php_lookup_methodFunction · 0.85

Tested by

no test coverage detected