I found some special characters "# @ +" and "# @ -" in the comments / documentation in ZF1. Example:
/**#@+ * @access protected */
( https://github.com/zendframework/zf1/blob/master/library/Zend/Mail.php#L54 )
I have seen this before in other repositories.
What does it mean?
These are PHP DocBlock template declarations. The file must also have an end tag /**#@-*/. It allows you to specify the same documentation for several properties, methods, or constants.
/**#@-*/
: http://codingexplained.com/coding/php/how-to-use-docblock-templates-in-phpdoc
Source: https://habr.com/ru/post/1653994/More articles:How to transfer a value to another page with a link? - phpWhy does C ++ support a pure virtual function with implementation? - c ++SQL Server - mapping - difference between Latin1_General_CI_AS and Latin1_General_CS_AS - sql-serverHow to display font awesome symfony icon - phpTPrintDialog orientation and read orientation parameter - delphiRun / Group Tests by Category Nunit Attribute in Visual Studio - c #Why does an abstract class have a vtable? - c ++RequestAcquireState Hanging on .NET 4.5.1 IIS8 - asp.netvirtual function calls in constructor and destructor - c ++displaying entity framework - c #All Articles