MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / parseMaintainerLine

Function parseMaintainerLine

tools/common_functions.php:162–176  ·  view source on GitHub ↗

parses out the maintainers from the maintainer line

($line)

Source from the content-addressed store, hash-verified

160
161/// parses out the maintainers from the maintainer line
162function parseMaintainerLine($line) {
163 $replacements = array(
164 "Maintainer" => "",
165 ":" => "",
166 "/" => "",
167 "$" => "",
168 " " => " ",
169 " " => " ",
170 "#" => "",
171 );
172 $result = explode(",", strtr($line, $replacements));
173 $result = array_map("trim", $result);
174 $result = array_filter($result, "strlen");
175 return array_unique($result);
176}
177
178/**
179 @brief parses the member information form doxygen xml

Callers 1

checker.phpFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected