summaryrefslogtreecommitdiff
path: root/include/global.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/global.h
parent3750e24683f3a1d0b643e9808d9619db40d31cc4 (diff)
Global variables are now accessible via Php::globals["varname"]
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/global.h b/include/global.h
index ead2e08..4531f77 100644
--- a/include/global.h
+++ b/include/global.h
@@ -180,9 +180,9 @@ private:
bool _exists;
/**
- * The environment can access the private method from this class
+ * The globals can access the private method from this class
*/
- friend class Environment;
+ friend class Globals;
};
/**