()
| 2366 | |
| 2367 | #[test] |
| 2368 | fn symbols_namespaced_function() { |
| 2369 | let content = b"<?php\nnamespace App\\Helpers;\nfunction helper(): void {}"; |
| 2370 | let result = find_symbols(content); |
| 2371 | assert_eq!(result.functions, vec!["App\\Helpers\\helper"]); |
| 2372 | } |
| 2373 | |
| 2374 | #[test] |
| 2375 | fn symbols_closure_not_captured() { |
nothing calls this directly
no test coverage detected