Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
docs: explain it's about class name casing
Browse files Browse the repository at this point in the history
  • Loading branch information
geerteltink committed Nov 5, 2019
1 parent 5aaa899 commit e6201f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -66,7 +66,7 @@ All notable changes to this project will be documented in this file, in reverse
- There MUST NOT be duplicate class names.
- The file name MUST match the case of the terminating class name.
- PHP 4 style constructors MUST NOT be used.
- The correct class names MUST be used.
- Correct class name casing MUST be used.
- Abstract classes MUST have a `Abstract` prefix.
- Exception classes MUST have a `Exception` suffix.
- Interface classes MUST have a `Interface` suffix.
Expand Down
2 changes: 1 addition & 1 deletion docs/book/v2/coding-style-guide.md
Expand Up @@ -417,7 +417,7 @@ new Foo();
>
> PHP 4 style constructors MUST NOT be used.
>
> The correct class names MUST be used.
> Correct class name casing MUST be used.
>
> Abstract classes MUST have a `Abstract` prefix.
>
Expand Down
2 changes: 1 addition & 1 deletion src/ZendCodingStandard/ruleset.xml
Expand Up @@ -306,7 +306,7 @@
<rule ref="WebimpressCodingStandard.NamingConventions.Interface"/>
<!-- Trait classes MUST have a `Trait` suffix. -->
<rule ref="WebimpressCodingStandard.NamingConventions.Trait"/>
<!-- The correct class names MUST be used. -->
<!-- Correct class name casing MUST be used. -->
<rule ref="WebimpressCodingStandard.PHP.CorrectClassNameCase"/>
<!-- For self-reference a class lower-case `self::` MUST be used without
spaces around the scope resolution operator. -->
Expand Down

0 comments on commit e6201f3

Please sign in to comment.