Skip to content

Commit a3cf6bf

Browse files
committed
Clarify PascalCase class naming requirement
Added a friendlier description of the PascalCase requirements. Adds an extra example to clarify that it's not just a leading capital we're looking for - we also need only letters and numbers.
1 parent 8c6ad04 commit a3cf6bf

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

src/Standards/Squiz/Docs/Classes/ValidClassNameStandard.xml

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<documentation title="Valid Class Name">
22
<standard>
33
<![CDATA[
4-
Class names must be written in Pascal case.
4+
Class names must be written in Pascal case. This means that it starts with a capital letter, and the first letter of each word in the class name is capitalized. Only letters and numbers are allowed.
55
]]>
66
</standard>
77
<code_comparison>
8-
<code title="Valid: Class name is written in Pascal case.">
8+
<code title="Valid: Class name starts with a capital letter.">
99
<![CDATA[
1010
class <em>PascalCaseStandard</em>
1111
{
@@ -19,5 +19,21 @@ class <em>notPascalCaseStandard</em>
1919
}
2020
]]>
2121
</code>
22-
</code_comparison>
22+
</code_comparison>
23+
<code_comparison>
24+
<code title="Valid: Class name contains only letters and numbers.">
25+
<![CDATA[
26+
class <em>PSR7Response</em>
27+
{
28+
}
29+
]]>
30+
</code>
31+
<code title="Invalid: Class name contains underscores.">
32+
<![CDATA[
33+
class <em>PSR7_Response</em>
34+
{
35+
}
36+
]]>
37+
</code>
38+
</code_comparison>
2339
</documentation>

0 commit comments

Comments
 (0)