Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 388 Bytes

File metadata and controls

11 lines (8 loc) · 388 Bytes

Ensure no spaces between the function name and the opening parenthesis, and single spaces after commas in argument lists, for better readability.

// Issue: Inconsistent spacing in function calls
doSomething ($arg1,$arg2, $arg3);

// Solution: Consistent spacing in function calls
doSomething($arg1, $arg2, $arg3);