Is there a comprehensive resource that clearly describes all header comment tags in PHP?

There is not a single comprehensive resource that clearly describes all header comment tags in PHP. However, the official PHP documentation provides information on some common header comment tags that can be used to document PHP code. Additionally, various coding standards and best practices guides may also provide information on header comment tags.

/**
 * This is a sample header comment in PHP code.
 * It includes information about the author, description, and any other relevant details.
 */