From c97b8bbf8252c3a493a44bcb91fb137952f03710 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Mon, 2 Jul 2018 18:56:27 +0200 Subject: Fixed bug #75231 The behavior is now consistent with ReflectionMethod. --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/reflection/php_reflection.c') diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 95b86e7283..690aaa0fe6 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -5645,7 +5645,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 */ } -- cgit v1.2.1