summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.h
diff options
context:
space:
mode:
authorAnthony Ferrara <ircmaxell@gmail.com>2015-03-18 15:22:21 -0400
committerAnthony Ferrara <ircmaxell@gmail.com>2015-03-18 15:22:21 -0400
commit0529eeb4a6d9b826075d267d98c7bbee2ffd75ab (patch)
tree966948f9245e9f8ebe0da9a0154e5b4c15e87fcc /Zend/zend_execute.h
parentdd9f4f95858a5720f914341f36b6e60cd0706797 (diff)
downloadphp-git-0529eeb4a6d9b826075d267d98c7bbee2ffd75ab.tar.gz
Fix executor issue with ignoring strict types, which cleans up a bunch of errors. Additionally fix the expected error of 2 unrelated tests that was caused by a change to the core error messages
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r--Zend/zend_execute.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h
index c040c8f633..239185ccb7 100644
--- a/Zend/zend_execute.h
+++ b/Zend/zend_execute.h
@@ -51,6 +51,7 @@ ZEND_API char * zend_verify_internal_arg_class_kind(const zend_internal_arg_info
ZEND_API char * zend_verify_arg_class_kind(const zend_arg_info *cur_arg_info, char **class_name, zend_class_entry **pce);
ZEND_API void zend_verify_arg_error(const zend_function *zf, uint32_t arg_num, const char *need_msg, const char *need_kind, const char *given_msg, const char *given_kind, zval *arg);
ZEND_API void zend_verify_return_error(const zend_function *zf, const char *need_msg, const char *need_kind, const char *returned_msg, const char *returned_kind);
+ZEND_API void zend_verify_internal_return_error(const zend_function *zf, const char *need_msg, const char *need_kind, const char *returned_msg, const char *returned_kind);
static zend_always_inline zval* zend_assign_to_variable(zval *variable_ptr, zval *value, zend_uchar value_type)
{