How to have the function calls documented in php ? I would like to have something like :
= = = =
*function_name1(list of args)*
description of the function
foo bar (extracted from php-doc like comments)
calls:
function_name2(list of args)
function_name3(list of args)
is called in function4 function5
= = = = = = = = = = = =
*function_name2(list of args)*
description of the function
foo bar (extracted from php-doc like comments)
calls:
function_name5(list of args)
is called in
function1
..