aboutsummaryrefslogtreecommitdiff
path: root/CODING.txt
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-23 13:10:50 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-23 13:10:50 +0000
commit2de6d0e0c6dfc95f90a1a439f6de6b393378772b (patch)
tree233abe19fbf4f8c1a50eb849fbdfd7dc41640045 /CODING.txt
parent14e06c0c631bc03b4804019bf32b45dac97667c3 (diff)
downloadelgg-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
Diffstat (limited to 'CODING.txt')
-rw-r--r--CODING.txt4
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)