summaryrefslogtreecommitdiff
path: root/src/function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/function.cpp')
-rw-r--r--src/function.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/function.cpp b/src/function.cpp
index a710f36..cc4315f 100644
--- a/src/function.cpp
+++ b/src/function.cpp
@@ -37,17 +37,17 @@ void invoke_function(INTERNAL_FUNCTION_PARAMETERS)
// construct parameters
Parameters params(this_ptr, ZEND_NUM_ARGS());
- // the function could throw an exception
- try
- {
- // get the result
- result = function->invoke(*PHPCPP_G(environment), params);
- }
- catch (Php::Exception &exception)
- {
- // an exception originally thrown by C++ should be passed on to PHP
- zend_throw_exception(zend_exception_get_default(), (char*)exception.message().c_str(), 0 TSRMLS_CC);
- }
+ // the function could throw an exception
+ try
+ {
+ // get the result
+ result = function->invoke(params);
+ }
+ catch (Php::Exception &exception)
+ {
+ // an exception originally thrown by C++ should be passed on to PHP
+ zend_throw_exception(zend_exception_get_default(), (char*)exception.message().c_str(), 0 TSRMLS_CC);
+ }
}
/**