sqry_lang_php/relations/mod.rs
1//! Relation extraction helpers for the PHP plugin.
2//!
3//! No new semantics here. New behaviour must go via `sqry_core::graph::GraphBuilder` and the language-specific `*GraphBuilder` (see this module's export) to build `CodeGraph`.
4
5mod graph_builder;
6mod phpdoc_parser;
7mod type_extractor;
8
9pub use graph_builder::PhpGraphBuilder;