i write an api generator, and need to read all methods with ist parameters by a defined class. read all Methods is done!
Example Class:
class Foo {
function tester($test)
{
return "bar";
}
function test(Article $article)
{
return "bar";
}
}
get_class_methods = array('tester', 'test');
ok, now i have to know the parameters of each function, how can i solve this problem?
Important is TypeHinting.
Thanks