Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 396 Bytes

File metadata and controls

15 lines (12 loc) · 396 Bytes

Enforce a single space before the opening brace of function definitions to adhere to CakePHP formatting standards, enhancing code readability and consistency.

// Issue: No space before opening brace
function myFunction(){
    // Code
}

// Solution: Single space before opening brace
function myFunction() {
    // Code
}