Parse PHP source text and extract class information. Returns a Vec of ClassInfo for all classes found in the file.
(&self, content: &str)
| 1055 | /// Parse PHP source text and extract class information. |
| 1056 | /// Returns a Vec of ClassInfo for all classes found in the file. |
| 1057 | pub fn parse_php(&self, content: &str) -> Vec<ClassInfo> { |
| 1058 | Self::parse_php_versioned(content, None) |
| 1059 | } |
| 1060 | |
| 1061 | /// Version-aware variant of [`parse_php`]. |
| 1062 | /// |
no outgoing calls