From 74e3cc9d08a714b0ead6f245356155921fef922e Mon Sep 17 00:00:00 2001 From: John Goetz Date: Wed, 10 Nov 2021 03:26:25 -0800 Subject: [PATCH] Update core-code-style.md (#19008) Changed Section 4 from CamelCase to StudlyCase to match the overview and Section 3. --- docs/internals/core-code-style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals/core-code-style.md b/docs/internals/core-code-style.md index 66360b43c15..78199c4b81b 100644 --- a/docs/internals/core-code-style.md +++ b/docs/internals/core-code-style.md @@ -46,7 +46,7 @@ Class names MUST be declared in `StudlyCaps`. For example, `Controller`, `Model` The term "class" refers to all classes and interfaces here. -- Classes should be named using `CamelCase`. +- Classes should be named using `StudlyCase`. - The brace should always be written on the line underneath the class name. - Every class must have a documentation block that conforms to the PHPDoc. - All code in a class must be indented with 4 spaces.