I currently have code where there is an abstract parent class that defines some concrete methods, and the children classes extend this parent class, and will use the concrete methods. For example:
<?php
abstract class abstract_class {
/**
* I document foo.
*/
public function foo() {
echo "I am the foo function!";
}
}
class child_class {
/**
* I document bar.
*/
public function bar() {
echo "I am the bar function!";
}
}
?>
In my documentation for child_class, I see my bar() function well documented, both in the Method summary and verbose description of the method...but my foo() function, which was inherited, is only stated to be inherited and I need to follow a link to see its full documentation, and even just see that it is callable by this function. An example of what I see is shown in the image here. (I can't put the image here because I am a new user...)
According to the PhpDocumentors documentation I should be able to see the Docblock somehow, but I don't know how to do so: "New in version 1.2.0, DocBlock's are inherited by child classes, variables, and methods."
I looked all over for a switch or something to run when calling phpdoc from a command-line but haven't found anything.
Is there some way to display the information I want, in the way that I want?