Detect a __call / __callStatic on a class chain. */
| 419 | |
| 420 | /* Detect a __call / __callStatic on a class chain. */ |
| 421 | static 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 |
no test coverage detected