theseer / phpdox

Documentation generator for PHP Code using standard technology (SRC, DOCBLOCK, XML and XSLT)
http://phpdox.de
Other
601 stars 121 forks source link

Generates plain list of properties and methods. No annotations #396

Closed nzurita closed 4 years ago

nzurita commented 4 years ago

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;
}
nzurita commented 4 years ago

Sorry, it works properly, I was only looking in the first block "Synopsis"

theseer commented 4 years ago

Thanks for the heads up.