-
-
Notifications
You must be signed in to change notification settings - Fork 490
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'WordPress:develop' into doc/WordPress.DB.SlowDBQuery
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
WordPress/Docs/NamingConventions/ValidFunctionNameStandard.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0"?> | ||
<documentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://phpcsstandards.github.io/PHPCSDevTools/phpcsdocs.xsd" | ||
title="Valid Function Name" | ||
> | ||
<standard> | ||
<![CDATA[ | ||
Use lowercase letters in function names. Separate words using underscores. Do not use double underscores as a prefix. | ||
]]> | ||
</standard> | ||
<code_comparison> | ||
<code title="Valid: lowercase function name."> | ||
<![CDATA[ | ||
function <em>prefix_function_name()</em> {} | ||
]]> | ||
</code> | ||
<code title="Invalid: mixed case function name."> | ||
<![CDATA[ | ||
function <em>Prefix_Function_NAME()</em> {} | ||
]]> | ||
</code> | ||
</code_comparison> | ||
<code_comparison> | ||
<code title="Valid: words separated by underscores."> | ||
<![CDATA[ | ||
class My_Class { | ||
public static <em>method_name()</em> {} | ||
} | ||
]]> | ||
</code> | ||
<code title="Invalid: using camel case to separate words."> | ||
<![CDATA[ | ||
class My_Class { | ||
public static <em>methodName()</em> {} | ||
} | ||
]]> | ||
</code> | ||
</code_comparison> | ||
</documentation> |