Reputation: 13933
This is my first run at generating API documentation. I am playing around with Sami and phpdoc.
I would like to know how I can prevent a method from being documented ?
Any help would be appreciated. Thanks.
Upvotes: 1
Views: 131
Reputation: 158000
In phpdoc it is done using the @ignore tag:
@ignore
/** * @ignore */ function secret() { }