summaryrefslogtreecommitdiff
path: root/src/classimpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/classimpl.cpp')
-rw-r--r--src/classimpl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classimpl.cpp b/src/classimpl.cpp
index 84b43df..8e062d4 100644
--- a/src/classimpl.cpp
+++ b/src/classimpl.cpp
@@ -97,7 +97,7 @@ void ClassImpl::callMethod(INTERNAL_FUNCTION_PARAMETERS)
Value result(return_value, true);
// construct parameters
- Parameters params(this_ptr, ZEND_NUM_ARGS() TSRMLS_CC);
+ ParametersImpl params(this_ptr, ZEND_NUM_ARGS() TSRMLS_CC);
// retrieve the base object
Base *base = params.object();
@@ -143,7 +143,7 @@ void ClassImpl::callInvoke(INTERNAL_FUNCTION_PARAMETERS)
Value result(return_value, true);
// construct parameters
- Parameters params(this_ptr, ZEND_NUM_ARGS() TSRMLS_CC);
+ ParametersImpl params(this_ptr, ZEND_NUM_ARGS() TSRMLS_CC);
// retrieve the base object
Base *base = params.object();