summaryrefslogtreecommitdiff
path: root/src/function.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-10 15:19:49 -0700
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-09-10 15:19:49 -0700
commitf08f5850fa39c42974e12e42fa101ffe51eef594 (patch)
tree4b42f9cdf56c1bd909b3c7f8e5297640c367176e /src/function.cpp
parent37c38c70de43d9d9ee3c9f0e2f175e19bcc0b485 (diff)
Renamed request to environment
Diffstat (limited to 'src/function.cpp')
-rw-r--r--src/function.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/function.cpp b/src/function.cpp
index 755bb48..10b47b9 100644
--- a/src/function.cpp
+++ b/src/function.cpp
@@ -38,10 +38,10 @@ void invoke_function(INTERNAL_FUNCTION_PARAMETERS)
Parameters params(ZEND_NUM_ARGS());
// @todo get the appropriate request (or environment)
- Request request(NULL);
+ Environment environment(NULL);
// get the result
- result = function->invoke(request, params);
+ result = function->invoke(environment, params);
}
/**