summaryrefslogtreecommitdiff
path: root/include/value.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-04 18:21:58 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-04 18:21:58 +0100
commitc028e8f932cc4206ab8446409693fba8dfe18ffb (patch)
tree4ffe8a5d77888cff291eb7dd412bbd03e51c6f29 /include/value.h
parent200952ad4004f6ee5527598622505adbe84df8af (diff)
Php::Value and Php::Object classes can now be used to wrap around Php::Base objects
Diffstat (limited to 'include/value.h')
-rw-r--r--include/value.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/value.h b/include/value.h
index 8af95a5..d0079dc 100644
--- a/include/value.h
+++ b/include/value.h
@@ -67,10 +67,10 @@ public:
Value(struct _zval_struct *zval, bool ref = false);
/**
- * Wrap around an object
- * @param value The object value
+ * Wrap around an object implemented by us
+ * @param object Object to be wrapped
*/
- Value(const struct _zend_object_value &value);
+ Value(Base *base);
/**
* Copy constructor