Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 443 Bytes

File metadata and controls

16 lines (14 loc) · 443 Bytes

Maintain uniform alignment of DocBlocks in CakePHP to enhance readability and documentation quality. Align annotations and description details properly to conform to best practices.

/**
 * Calculate the sum of two numbers.
 *
 * @param int $a First number.
 * @param int $b Second number.
 * @return int Sum of numbers.
 */
function sum($a, $b) {
    return $a + $b;
}