summaryrefslogtreecommitdiff
path: root/include/base.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/base.h')
-rw-r--r--include/base.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/base.h b/include/base.h
index eceb114..797aff6 100644
--- a/include/base.h
+++ b/include/base.h
@@ -17,6 +17,11 @@ class Base
{
public:
/**
+ * Virtual destructor
+ */
+ virtual ~Base() {}
+
+ /**
* The pseudo constructor that is called from PHP after the object is constructed
* @param environment
* @param parameters
@@ -46,6 +51,20 @@ public:
*/
virtual void __construct() {}
+ /**
+ * The pseudo destructor that is called from PHP right before the object is destructed
+ * @param environment
+ */
+ virtual void __destruct(Environment &environment)
+ {
+ // call the other implementation
+ __destruct();
+ }
+
+ /**
+ * The pseudo destructor that is called from PHP right before the object is destructed
+ */
+ virtual void __destruct() {}
};