You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardexpand all lines: src/Standards/Squiz/Docs/Classes/ValidClassNameStandard.xml
+19-3
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
<documentationtitle="Valid Class Name">
2
2
<standard>
3
3
<![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.
5
5
]]>
6
6
</standard>
7
7
<code_comparison>
8
-
<codetitle="Valid: Class name is written in Pascal case.">
8
+
<codetitle="Valid: Class name starts with a capital letter.">
9
9
<![CDATA[
10
10
class <em>PascalCaseStandard</em>
11
11
{
@@ -19,5 +19,21 @@ class <em>notPascalCaseStandard</em>
19
19
}
20
20
]]>
21
21
</code>
22
-
</code_comparison>
22
+
</code_comparison>
23
+
<code_comparison>
24
+
<codetitle="Valid: Class name contains only letters and numbers.">
25
+
<![CDATA[
26
+
class <em>PSR7Response</em>
27
+
{
28
+
}
29
+
]]>
30
+
</code>
31
+
<codetitle="Invalid: Class name contains underscores.">
0 commit comments