Hi, I'm using phpdoc to generate documentation for a couple of Symfony 2 bundles. I have two issues:
1) I want the class diagram for my projects only, but phpdoc searches the class hierarchy all the way up and ends up generating a diagram of the entire Symfony framework along with my project. How can I fix this?
2) I have a getter and a setter for every private member in entity classes, like this:
private $name;
public function getName() { ... }
public function setName($name) { ... }
I keep auto generated getters and setters at the bottom of every file and care very little about them, they're just a requirement for Doctrine ORM. So, I just want to document the "name" property, and skip superfluous documentation of the getters and setters.
Can I have phpdoc completely ignore all getters and setters in my project?
Thanks in advance,
Ernesto.