Skip to content

Commit

Permalink
Generic/ArrayIndent: add XML documentation (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoprimo authored Oct 31, 2024
1 parent d02c686 commit 0b81673
Showing 1 changed file with 107 additions and 0 deletions.
107 changes: 107 additions & 0 deletions src/Standards/Generic/Docs/Arrays/ArrayIndentStandard.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<documentation title="Array Indent">
<standard>
<![CDATA[
The opening brace of a multi-line array must be indented at least to the same level as the start of the statement.
]]>
</standard>
<code_comparison>
<code title="Valid: Opening brace of a multi-line array indented to the same level as the start of the statement.">
<![CDATA[
$b = <em>[</em>
1,
2,
];
if ($condition) {
$a =
<em> [</em>
1,
2,
];
}
]]>
</code>
<code title="Invalid: Opening brace of a multi-line array not indented to the same level as the start of the statement.">
<![CDATA[
if ($condition) {
$a =
<em>[</em>
1,
2,
];
}
]]>
</code>
</code_comparison>
<standard>
<![CDATA[
Each array element must be indented exactly four spaces from the start of the statement.
]]>
</standard>
<code_comparison>
<code title="Valid: Each array element is indented by exactly four spaces.">
<![CDATA[
$a = array(
<em> </em>1,
<em> </em>2,
<em> </em>3,
);
]]>
</code>
<code title="Invalid: Array elements not indented by four spaces.">
<![CDATA[
$a = array(
<em> </em>1,
<em> </em>2,
<em> </em>3,
);
]]>
</code>
</code_comparison>
<standard>
<![CDATA[
The array closing brace must be on a new line.
]]>
</standard>
<code_comparison>
<code title="Valid: Array closing brace on its own line.">
<![CDATA[
$a = [
1,
2,<em>
]</em>;
]]>
</code>
<code title="Invalid: Array closing brace not on its own line.">
<![CDATA[
$a = [
1,
2,<em>]</em>;
]]>
</code>
</code_comparison>
<standard>
<![CDATA[
The closing brace must be aligned with the start of the statement containing the array opener.
]]>
</standard>
<code_comparison>
<code title="Valid: Closing brace aligned with the start of the statement containing the array opener.">
<![CDATA[
$a = array(
1,
2,
<em>)</em>;
]]>
</code>
<code title="Invalid: Closing brace not aligned with the start of the statement containing the array opener.">
<![CDATA[
$a = array(
1,
2,
<em> )</em>;
]]>
</code>
</code_comparison>
</documentation>

0 comments on commit 0b81673

Please sign in to comment.