summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-06 07:42:36 -0800
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-06 07:42:36 -0800
commitc91dc2292f4fd49a3103691cb70fee8336c6aa6c (patch)
tree578d41f25a0ce7b37ab3b7c9d2aa1992ca91b0c0 /include/value.h
parent3750e24683f3a1d0b643e9808d9619db40d31cc4 (diff)
Global variables are now accessible via Php::globals["varname"]
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/value.h b/include/value.h
index 336bb1d..b2ce89b 100644
--- a/include/value.h
+++ b/include/value.h
@@ -564,9 +564,9 @@ protected:
struct _zval_struct *_val;
/**
- * The environment can access the zval directly
+ * The Globals and Member classes can access the zval directly
*/
- friend class Environment;
+ friend class Globals;
friend class Member;
};