Function Calls

Functions should be called with no spaces between the function name, the opening parenthesis, and the first parameter; a between commas and each parameter, and no space between the last parameter, the closing parenthesis, and the semicolon.

For example:

$var = foo($bar, $baz, $quux);