Top "Docblocks" questions

A DocBlock is a specially formatted PHP comment which allows external document generators to generate documentation of APIs and helps some IDEs to interpret variable types, provide improved code completion, type hinting and debugging.

How to document magic (_call and _callStatic) methods for IDEs

After many happy years coding in notepad++ and sublime, I've been advised to give a PHP IDE a go. I'm …

php documentation phpstorm magic-methods docblocks
How do I customize NetBeans PHP auto DocBlock for methods and attributes?

After I create a method I use /**<enter> to generate the DocBlock. It auto fills the @param and @…

php netbeans documentation docblocks
phpStorm 7 update docblock

Is there a way to ask phpStorm to update the contents of a docblock? eg if I have the following …

phpstorm docblocks
How to collapse/expand all comment blocks in a file in PhpStorm?

In PhpStorm, what is a quick way to collapse or expand all the comment (doc) blocks in a file? In …

php comments phpstorm collapse docblocks
Are there any PHP DocBlock parser tools available?

I would like to build some smaller scale but hightly customized documentation sites for a few projects. PhpDocumentor is pretty …

php documentation parsing docblocks
generate annotated doctrine2 entites from db schema

Is it possible to generate Doctrine 2 entities, with the relevant docblock annotations, from an existing database schema?

annotations doctrine-orm schema docblocks
Docblocks for Doctrine collections

Is there a standard way to document the expected class of entities inside a Collection in the docblock comment in …

php doctrine doctrine-orm phpdoc docblocks