Extract classes, functions, methods, namespace uses, and calls from a .php file.
(path: Path)
| 6700 | |
| 6701 | |
| 6702 | def 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 |