A built-in template for PHP function doc comment.
Predefined variables will take the following values:
${NAME}   Function name.
${TYPE_HINT}   A type hint of the function's return value. If no return types can be found from function static analysis, evaluates to "void".
${PARAM_DOC}  

Parameters' doc comment.

Generated as a number of lines '* @param type name". If there are no parameters, evaluates to an empty content.

${THROWS_DOC}  

Exceptions' doc comment.

Generated as a number of lines '* @throws type". If there are no thrown exceptions, evaluates to an empty content.

${STATIC}   Takes a value of "static" if the function (method) is static or an empty string otherwise. For example:
      #if (${STATIC} == "static") * @static
      #end
    
${DS}   Dollar sign, evaluates to a plain '$' character.
${DATE}   current system date
${TIME}   current system time
${YEAR}   current year
${MONTH}   current month
${MONTH_NAME_SHORT}   first 3 letters of the current month name. Example: Jan, Feb, etc.
${MONTH_NAME_FULL}   full name of the current month. Example: January, February, etc.
${DAY}   current day of the month
${HOUR}   current hour
${MINUTE}   current minute
${SECOND}   current second
${PROJECT_NAME}   the name of the current project
${USER}   current user
${CARET}   Marks a position where the caret must be moved after the comment is added.