diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2018-07-02 18:57:14 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-07-02 18:57:25 +0200 |
commit | 9bbb9e537c4f88eb31038343e567c0eca4b9a00d (patch) | |
tree | 8604029aeca632b9dc95b28a57bf54e458f2e110 /ext/reflection/php_reflection.c | |
parent | 3a236d0587aafc762890e61813cb22e63d8b2550 (diff) | |
parent | c97b8bbf8252c3a493a44bcb91fb137952f03710 (diff) | |
download | php-git-9bbb9e537c4f88eb31038343e567c0eca4b9a00d.tar.gz |
Merge branch 'PHP-7.1' into PHP-7.2
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 9128f76d9d..a0d4ebb4a0 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -5531,7 +5531,7 @@ ZEND_METHOD(reflection_property, getValue) return; } - if (!instanceof_function(Z_OBJCE_P(object), ref->ce)) { + if (!instanceof_function(Z_OBJCE_P(object), ref->prop.ce)) { _DO_THROW("Given object is not an instance of the class this property was declared in"); /* Returns from this function */ } |