Are there templates or guidelines available for documenting arrays in PHP?

When documenting arrays in PHP, it is important to provide clear and concise information about the structure and contents of the array for other developers to understand. One way to do this is by using templates or guidelines for documenting arrays, which can help standardize the format and make it easier for others to work with the code.

/**
 * This function demonstrates how to document an array in PHP using a template.
 *
 * @param array $myArray An array containing information about a person.
 * @return void
 */
function processArray(array $myArray): void {
    // Code to process the array goes here
}