Skip to content

Commit c0ef1e5

Browse files
committed
Move standard about additional lines before closing tag to end
Based on suggestion during PR review
1 parent dc22715 commit c0ef1e5

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

src/Standards/Generic/Docs/Commenting/DocCommentStandard.xml

+22-22
Original file line numberDiff line numberDiff line change
@@ -46,28 +46,6 @@
4646
</code_comparison>
4747
<standard>
4848
<![CDATA[
49-
There must be no additional blank (comment) lines before the closing DocBlock tag.
50-
]]>
51-
</standard>
52-
<code_comparison>
53-
<code title="Valid: no additional blank lines before the closing DocBlock tag.">
54-
<![CDATA[
55-
/**
56-
* Short description.<em>
57-
</em> */
58-
]]>
59-
</code>
60-
<code title="Invalid: additional blank lines before the closing DocBlock tag.">
61-
<![CDATA[
62-
/**
63-
* Short description.
64-
<em> *</em>
65-
*/
66-
]]>
67-
</code>
68-
</code_comparison>
69-
<standard>
70-
<![CDATA[
7149
The DocBlock must have a short description, and it must be on the first line.
7250
]]>
7351
</standard>
@@ -257,6 +235,28 @@
257235
* @return void
258236
*
259237
* <em>@param string $bar</em>
238+
*/
239+
]]>
240+
</code>
241+
</code_comparison>
242+
<standard>
243+
<![CDATA[
244+
There must be no additional blank (comment) lines before the closing DocBlock tag.
245+
]]>
246+
</standard>
247+
<code_comparison>
248+
<code title="Valid: no additional blank lines before the closing DocBlock tag.">
249+
<![CDATA[
250+
/**
251+
* Short description.<em>
252+
</em> */
253+
]]>
254+
</code>
255+
<code title="Invalid: additional blank lines before the closing DocBlock tag.">
256+
<![CDATA[
257+
/**
258+
* Short description.
259+
<em> *</em>
260260
*/
261261
]]>
262262
</code>

0 commit comments

Comments
 (0)