From dc5e76ec577c9f43d0852ed429672d86ad9d5cdc Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Wed, 18 Jul 2001 00:27:15 +0000 Subject: [PATCH] Private members don't have to be functions. --- pear/CODING_STANDARDS | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pear/CODING_STANDARDS b/pear/CODING_STANDARDS index 20f25a06cb..b9dd40f100 100644 --- a/pear/CODING_STANDARDS +++ b/pear/CODING_STANDARDS @@ -129,11 +129,12 @@ and each letter that starts a new "word" is capitalized. Some examples: connect() getData() buildSomeWidget() -Private methods (meaning methods that an intented to be called only from -within the same class; PHP does not yet support truly-enforceable private -namespaces) are preceeded by a single underscore. For example: +Private class members (meaning class members that an intented to be used +only from within the same class in which they are declared; PHP does not yet +support truly-enforceable private namespaces) are preceeded by a single +underscore. For example: - _sort() _initTree() _validateInput() + _sort() _initTree() $_status ------------ -- 2.50.1