I switched to PHP 5.3 and namespaces. It seems that the @package tag is now superfluous and useless.
Is phpDoc required yet, or can I ignore this tag now?
thanks
This is not required.
The last document now states that @package should be avoided if you use a namespace and you don't need another structure for documentation:
@package
If, in all areas, the logical and functional units are NOT RECOMMENDED to use the @package tag to prevent maintenance overhead.
http://phpdoc.org/docs/latest/references/phpdoc/tags/package.html
@package does not apply to namespaces, but to organize the resulting documentation.
Packages are used to help you logically group related items. phpDoc guide
EDIT
Is there a replacement PHPDocumentor that supports PHP 5.3?
Source: https://habr.com/ru/post/1345595/More articles:JSF and PrimeFaces Strategy - jsfUnicode MySQL command line escape sequence - command-lineHow can I poll through the irc bot? - pythonUnpublished private member variables compared to global variables in the source file - c ++In Rails, is there a way to tell TYPE what attr_accessor should be and check it using the built-in validation of Rails? - validationCast value value during attr_accessor - ruby | fooobar.comReturning only the vertices in the shortest path - javaRails ActiveRecord :: MultiparameterAssignmentErrors - ruby | fooobar.comHow to add click event to my div from code? - htmlFinding shortest path nodes with first width search - javaAll Articles