For example I have a project called "myproj" and a subpackage called "utils" and in this subpackage there's again a subpackage called "debug".

Can I do something like that: ?

/**
  * @package myproj
  * @subpackage utils
  * @subpackage debug
  * /

Thanks in advance!


Solution

There is also the tag @category:

The @category tag is used to organize groups of packages together.

So you can use the tags in the following order: @category, @package, @subpackage And if that isn't enough for you, can could use also underscores in the names.

link|improve this question

I suggest you to use @subpackage Utils_Debug if you use such namespace. – Boris Guéry Feb 5 '11 at 18:29
feedback

1 Answer

up vote 1 down vote accepted

Most generators will not understand multiple subpackage tags. Convention is either to use underscores or hyphens; or not segmenting below 2 levels (package / subpackage)

See: http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_tags.subpackage.pkg.html

link|improve this answer
Thanks, but I've found the tag "category". So I use @category, @package and optionally @subpackage. That are enough for me ;) – ComFreek May 30 '11 at 17:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.