/** * @nahisaho/musubix-codegraph - PHP Extractor * * AST extractor for PHP source files * * @see REQ-CG-MULTILANG-004 * @see DES-CG-PHP * @see TSK-CG-020 */ import type { ParseResult } from '../../types.js'; import { BaseExtractor, type LanguageConfig, type SyntaxTree } from './base-extractor.js'; /** * PHP language extractor */ export declare class PhpExtractor extends BaseExtractor { readonly config: LanguageConfig; extract(tree: SyntaxTree, filePath: string, sourceCode: string): ParseResult; private extractClass; private extractInterface; private extractTrait; private extractFunction; private extractMethod; private extractHeritage; private extractUse; private extractPhpDocComment; } //# sourceMappingURL=php.d.ts.map