Tagged Questions
The docblocks tag has no wiki summary.
15
votes
2answers
768 views
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 @return for that function.
Example:
/**
*
* @param type $str
* @return type
*/
public ...
3
votes
4answers
2k views
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?
3
votes
1answer
195 views
Resources for writing good PHP documentation
I am getting a tool ready to make the source public. I would like to have it well documented for people who would use it as well as potential contributors. I am already using some rudimentary ...
3
votes
3answers
845 views
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 great but it is very heavy. I thought about trying to tweak the ...
3
votes
6answers
835 views
Most common docblock for Delphi and/or FreePascal code
I'm quite familiar with PHP dockblocks since it's been my job for the last 15+ years.
/**
* Description
*
* @tag bla bla
* @tag more bla bla
*/
What I'm trying to understand is if there ...
1
vote
2answers
27 views
How can I use docblock hints with classes for $this variables?
I'm using NetBeans as my IDE. Whenever I have some code that uses another function (usually a factory) to return an object, typically I can do the following to help with hinting:
/* @var $object ...
0
votes
1answer
76 views
Can't get DocBlox to work with Netbeans
I'm trying to get Netbeans for Mac to integrate with DocBlox for documentation generation. I followed the instructions on the docblox site for integrating with netbeans, but when I actually try to ...
0
votes
1answer
29 views
Match PHPDoc comments with Regex
I use the Javascript Syntax Highlighter built by Alex Gorbatchev
https://github.com/alexgorbatchev/SyntaxHighlighter/
I am trying to add support for PHPDoc comments, the PHP brush currenty matches ...
0
votes
1answer
14 views
Is it possible to use DocBlocks with dreamweaver cs5?
I like documenting php with netbeans, but it doesn't seem to work with dreamweaver cs5.
0
votes
2answers
73 views
Docblocks for Doctrine collections
Is there a standard way to document the expected class of entities inside a Collection in the docblock comment in a Doctrine project? Something like:
/**
* @var Collection<User>
*/
protected ...
0
votes
1answer
64 views
How to set the @return value of a dynamic function?
Say I have this function:
function load_model($modelName)
{
$model = new $modelName;
return $model;
}
Using it, I can do:
$userModel = load_model('user');
$forumModel = load_model('forum');
...
0
votes
1answer
41 views
adding phpdoc to new files
im looking for a way to add some docblocks to a new .php file, so i can have it add the description, package name, author , etc to a new file.
i have been searching for a couple days and I dont see ...