Skip to content

Commit f1b14c1

Browse files
committed
Fix tabs/spaces
1 parent 5d5103f commit f1b14c1

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ext/reflection/php_reflection.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6292,14 +6292,14 @@ ZEND_METHOD(ReflectionProperty, isInitialized)
62926292
/* If this is an uninitialized lazy object, do not trigger initialization. */
62936293
if (ref->prop
62946294
&& !(prop_get_flags(ref) & (ZEND_ACC_STATIC|ZEND_ACC_VIRTUAL))
6295-
&& zend_object_is_lazy(Z_OBJ_P(object))
6296-
&& !zend_lazy_object_initialized(Z_OBJ_P(object))
6295+
&& zend_object_is_lazy(Z_OBJ_P(object))
6296+
&& !zend_lazy_object_initialized(Z_OBJ_P(object))
62976297
) {
6298-
zval *slot = OBJ_PROP(Z_OBJ_P(object), ref->prop->offset);
6298+
zval *slot = OBJ_PROP(Z_OBJ_P(object), ref->prop->offset);
62996299

6300-
if (Z_PROP_FLAG_P(slot) & IS_PROP_LAZY) {
6301-
RETURN_FALSE;
6302-
}
6300+
if (Z_PROP_FLAG_P(slot) & IS_PROP_LAZY) {
6301+
RETURN_FALSE;
6302+
}
63036303
}
63046304

63056305
const zend_class_entry *old_scope = EG(fake_scope);

0 commit comments

Comments
 (0)