I\'m developing an API with Symfony 3 and I want to use apidoc to create a documentation. Apidoc works with annotations:
/** * @api {get} /user/:id Request
There is also a way to ignore an annotation globally. We didn't want to annotate each class, so we added this to our bootstrap file web/app.php.
web/app.php
Doctrine\Common\Annotations\AnnotationReader::addGlobalIgnoredName('your-custom-annotation');