Are there any integrated development environments (IDEs) that already have tools for checking and generating documentation in PHP files?

Many popular integrated development environments (IDEs) for PHP, such as PhpStorm and Visual Studio Code, come with built-in tools for checking and generating documentation in PHP files. These tools can help developers easily create and maintain documentation for their code, improving code readability and maintainability.

/**
 * This function calculates the sum of two numbers.
 *
 * @param int $num1 The first number
 * @param int $num2 The second number
 * @return int The sum of the two numbers
 */
function calculateSum($num1, $num2) {
    return $num1 + $num2;
}