3 * Doxygen filter to show correct member variable types in documentation.
5 * Should be filled in doxygen INPUT_FILTER as "php mwdoc-filter.php"
7 * Original source code by Goran Rakic
8 * http://blog.goranrakic.com/
9 * http://stackoverflow.com/questions/4325224
14 $source = file_get_contents( $argv[1] );
15 $regexp = '#\@var\s+([^\s]+)([^/]+)/\s+(var|public|protected|private)\s+(\$[^\s;=]+)#';
16 $replac = '${2} */ ${3} ${1} ${4}';
17 $source = preg_replace($regexp, $replac, $source);