phpDocumentor (phpdoc) is an automatic code-documentation tool for PHP, based on Javadoc.
I'm struggling to write readable and easy to understand documentation that describes the multi-tree structure for Array options that are …
php cakephp phpdocJust curious if there's a way in netbeans to give type hints for regular variables, so that intellisense picks it …
php phpdoc php-ideIs it really necessary do something like this: /** * ... * * @return void */ I have quite a few methods that don't have a …
php return-value phpdocI have this code: /** * Days to parse * @var int */ const DAYS_TO_PARSE = 10; ... I don't think that using @var is …
php phpdocRecently, I decided to try out Sublime Text 2 as a TextMate alternative (which it is). I'm absolutely loving it but …
phpdoc sublimetextI use several associative arrays in my PHP application and I'm using PHP documentor to comment my sources. I never …
php arrays associative-array phpdocTake in consideration the following PHP 5 class: class SomeClass { //I want to document this property... private $foo; function __construct() { } public …
php class phpdoc