Function Calls
Functions should be called without space between function's name and starting bracket. There should be one space between every parameter of a function call.
<?php $var = foo($bar, $bar2, $bar3); ?>
<?php$var = foo($bar, $bar2, $bar3);?>
As you can see above there should be one space on both sides of equals sign (=).


























