Skip to content

Commit 9adcadc

Browse files
committed
last whitespaces reverts
1 parent d4056a9 commit 9adcadc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Zend/zend_API.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3432,8 +3432,8 @@ static bool zend_is_callable_check_class(zend_string *name, zend_class_entry *sc
34323432
if (!fcc->object) {
34333433
fcc->object = zend_get_this_object(frame);
34343434
}
3435-
*strict_class = 1;
3436-
ret = 1;
3435+
*strict_class = 1;
3436+
ret = 1;
34373437
}
34383438
} else if ((ce = zend_lookup_class(name)) != NULL) {
34393439
zend_class_entry *scope = get_scope(frame);
@@ -3442,8 +3442,8 @@ static bool zend_is_callable_check_class(zend_string *name, zend_class_entry *sc
34423442
zend_object *object = zend_get_this_object(frame);
34433443

34443444
if (object &&
3445-
instanceof_function(object->ce, scope) &&
3446-
instanceof_function(scope, ce)) {
3445+
instanceof_function(object->ce, scope) &&
3446+
instanceof_function(scope, ce)) {
34473447
fcc->object = object;
34483448
fcc->called_scope = object->ce;
34493449
} else {

0 commit comments

Comments
 (0)