When generating phpdox for my projec, I get a full plain list of classes, properties and method, but mehtod or class annotations are not included in the generated docs.
I use the default phpdox.xml generated by --skel.
My annotations are like this:
/**
* Class Client
* Lorem ipsum dolor.
*
* @author: Me Myself
*/
And this:
/**
* @method: setName
*
* @param: name: Name of client
*/
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
When generating
phpdox
for my projec, I get a full plain list of classes, properties and method, but mehtod or class annotations are not included in the generated docs.I use the default
phpdox.xml
generated by--skel
.My annotations are like this:
And this: