Extract information about the PHP symbol following the docblock. Parses the declaration line(s) after `*/` to pull out parameter names, type hints, return types, etc.
(content: &str, position: Position)
| 405 | /// Parses the declaration line(s) after `*/` to pull out parameter names, |
| 406 | /// type hints, return types, etc. |
| 407 | pub fn extract_symbol_info(content: &str, position: Position) -> SymbolInfo { |
| 408 | let remaining = get_text_after_docblock(content, position); |
| 409 | parse_symbol_info(&remaining) |
| 410 | } |
| 411 | |
| 412 | // ─── Helpers ──────────────────────────────────────────────────────────────── |
| 413 |