summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-15 13:57:53 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-15 13:57:53 -0700
commit9e1ecc534bace7d00a265a49018c0148a56361ae (patch)
treef7a779b999a7aed942510e3d448355f3554c20c7 /include/value.h
parent9634a336f080bc15c1e67495eb9216d1863808f8 (diff)
Added Environment::call() method that makes it possible to call PHP functions
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/value.h b/include/value.h
index fa2b608..e29b8f2 100644
--- a/include/value.h
+++ b/include/value.h
@@ -492,6 +492,11 @@ protected:
* @var struct zval
*/
struct _zval_struct *_val;
+
+ /**
+ * The environment can access the zval directly
+ */
+ friend class Environment;
};
/**