Skip to content

Commit adac80a

Browse files
committed
remove more clean
1 parent 8eaf488 commit adac80a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

agent/fw_yii.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ NR_PHP_WRAPPER_END
9292
void nr_yii1_enable(TSRMLS_D) {
9393
#if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \
9494
&& !defined OVERWRITE_ZEND_EXECUTE_DATA
95-
nr_php_wrap_user_function_before_after_clean(
95+
nr_php_wrap_user_function_before_after(
9696
NR_PSTR("CAction::runWithParams"), nr_yii1_runWithParams_wrapper, NULL);
97-
nr_php_wrap_user_function_before_after_clean(
97+
nr_php_wrap_user_function_before_after(
9898
NR_PSTR("CInlineAction::runWithParams"), nr_yii1_runWithParams_wrapper,
9999
NULL);
100100
#else
@@ -194,12 +194,12 @@ NR_PHP_WRAPPER_END
194194
void nr_yii2_enable(TSRMLS_D) {
195195
#if ZEND_MODULE_API_NO >= ZEND_8_0_X_API_NO \
196196
&& !defined OVERWRITE_ZEND_EXECUTE_DATA
197-
nr_php_wrap_user_function_before_after_clean(
197+
nr_php_wrap_user_function_before_after(
198198
NR_PSTR("yii\\base\\Action::runWithParams"),
199-
nr_yii2_runWithParams_wrapper, NULL, NULL);
200-
nr_php_wrap_user_function_before_after_clean(
199+
nr_yii2_runWithParams_wrapper, NULL);
200+
nr_php_wrap_user_function_before_after(
201201
NR_PSTR("yii\\base\\InlineAction::runWithParams"),
202-
nr_yii2_runWithParams_wrapper, NULL, NULL);
202+
nr_yii2_runWithParams_wrapper, NULL);
203203
#else
204204
nr_php_wrap_user_function(NR_PSTR("yii\\base\\Action::runWithParams"),
205205
nr_yii2_runWithParams_wrapper TSRMLS_CC);

0 commit comments

Comments
 (0)