Skip to content

Commit 16da825

Browse files
author
foobar
committed
CS fix
1 parent cb38be1 commit 16da825

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

ext/standard/basic_functions.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2695,6 +2695,7 @@ PHP_FUNCTION(register_tick_function)
26952695

26962696
tick_fe.calling = 0;
26972697
tick_fe.arg_count = ZEND_NUM_ARGS();
2698+
26982699
if (tick_fe.arg_count < 1) {
26992700
WRONG_PARAM_COUNT;
27002701
}
@@ -2737,8 +2738,10 @@ PHP_FUNCTION(unregister_tick_function)
27372738
WRONG_PARAM_COUNT;
27382739
}
27392740

2740-
if(!BG(user_tick_functions)) return;
2741-
2741+
if (!BG(user_tick_functions)) {
2742+
return;
2743+
}
2744+
27422745
if (Z_TYPE_PP(function) != IS_ARRAY) {
27432746
convert_to_string_ex(function);
27442747
}

0 commit comments

Comments
 (0)