Mercurial > hg > isophonics-drupal-site
view vendor/drupal/coder/coder_sniffer/Drupal/Docs/Functions/FunctionCallArgumentSpacingStandard.xml @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<documentation title="Parameter Spacing in Function Calls"> <standard> <![CDATA[ There must be one space between a comma and a parameter in a function call. ]]> </standard> <code_comparison> <code title="Valid: spaces between parameters"> <![CDATA[ $var = foo($bar<em>, </em>$baz<em>, </em>$quux); ]]> </code> <code title="Invalid: no space between commas and parameters"> <![CDATA[ $var = foo($bar<em>,</em>$baz<em>,</em>$quux); ]]> </code> </code_comparison> </documentation>