diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-23 13:10:50 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-23 13:10:50 +0000 |
commit | 2de6d0e0c6dfc95f90a1a439f6de6b393378772b (patch) | |
tree | 233abe19fbf4f8c1a50eb849fbdfd7dc41640045 | |
parent | 14e06c0c631bc03b4804019bf32b45dac97667c3 (diff) | |
download | elgg-2de6d0e0c6dfc95f90a1a439f6de6b393378772b.tar.gz elgg-2de6d0e0c6dfc95f90a1a439f6de6b393378772b.tar.bz2 |
Updated standards for method names.
git-svn-id: http://code.elgg.org/elgg/trunk@3574 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | CODING.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CODING.txt b/CODING.txt index a3b92096f..844212925 100644 --- a/CODING.txt +++ b/CODING.txt @@ -18,8 +18,8 @@ plugins, and tickets attached to Trac are expected to be in this format. echo $elem; } } -* Name functions and methods using underscore_character(). -* Name classes using CamelCase() +* Name standalone functions using underscore_character(). +* Name classes using CamelCase() and methods using lowerCamelCase(). * Name globals and constants in ALL_CAPS (FALSE, TRUE, NULL, ACCESS_FRIENDS, $CONFIG). * Space functions like_this($required, $optional = TRUE) |