We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a74eb6 commit 75d2e82Copy full SHA for 75d2e82
src/Standards/Squiz/Docs/Classes/ValidClassNameStandard.xml
@@ -0,0 +1,23 @@
1
+<documentation title="Valid Class Name">
2
+ <standard>
3
+ <![CDATA[
4
+ Class names must be written in Pascal case.
5
+ ]]>
6
+ </standard>
7
+ <code_comparison>
8
+ <code title="Valid: Class name is written in Pascal case.">
9
10
+class PascalCaseStandard
11
+{
12
+}
13
14
+ </code>
15
+ <code title="Invalid: Class name does not start with a capital letter.">
16
17
+class notPascalCaseStandard
18
19
20
21
22
+ </code_comparison>
23
+</documentation>
0 commit comments