MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / extract_php

Function extract_php

graphify/extract.py:6702–6704  ·  view source on GitHub ↗

Extract classes, functions, methods, namespace uses, and calls from a .php file.

(path: Path)

Source from the content-addressed store, hash-verified

6700
6701
6702def extract_php(path: Path) -> dict:
6703 """Extract classes, functions, methods, namespace uses, and calls from a .php file."""
6704 return _extract_generic(path, _PHP_CONFIG)
6705
6706
6707

Calls 1

_extract_genericFunction · 0.85