We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a80fde9 commit 7a47e82Copy full SHA for 7a47e82
src/Standards/Generic/Docs/Functions/FunctionCallArgumentSpacingStandard.xml
@@ -7,16 +7,12 @@
7
<code_comparison>
8
<code title="Valid: Single spaces after a comma.">
9
<![CDATA[
10
-function foo($bar,<em> </em>$baz)
11
-{
12
-}
+foo($bar,<em> </em>$baz);
13
]]>
14
</code>
15
<code title="Invalid: No spaces after a comma.">
16
17
-function foo($bar,<em></em>$baz)
18
19
+foo($bar,<em></em>$baz);
20
21
22
</code_comparison>
0 commit comments