Skip to content

Commit 512dc68

Browse files
authored
Merge pull request #1047 from rodrigoprimo/documentation-namespace-declaration
PSR2/NamespaceDeclaration: improve XML documentation
2 parents 0ce545b + 5132195 commit 512dc68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Standards/PSR2/Docs/Namespaces/NamespaceDeclarationStandard.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<documentation title="Namespace Declarations">
1+
<documentation title="Namespace Declaration">
22
<standard>
33
<![CDATA[
44
There must be one blank line after the namespace declaration.
@@ -7,14 +7,14 @@
77
<code_comparison>
88
<code title="Valid: One blank line after the namespace declaration.">
99
<![CDATA[
10-
namespace \Foo\Bar;
10+
namespace Foo\Bar;
1111
<em></em>
1212
use \Baz;
1313
]]>
1414
</code>
1515
<code title="Invalid: No blank line after the namespace declaration.">
1616
<![CDATA[
17-
namespace \Foo\Bar;
17+
namespace Foo\Bar;
1818
use \Baz;
1919
]]>
2020
</code>

0 commit comments

Comments
 (0)