From 8bbfe174a8029256fdb252d08ba641b6662b4fbc Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Sat, 31 Dec 2016 08:56:15 -0800 Subject: [PATCH] Use new param API in tokenizer --- ext/tokenizer/tokenizer.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/ext/tokenizer/tokenizer.c b/ext/tokenizer/tokenizer.c index 9537e91251..11c82654b4 100644 --- a/ext/tokenizer/tokenizer.c +++ b/ext/tokenizer/tokenizer.c @@ -275,9 +275,11 @@ PHP_FUNCTION(token_get_all) zend_long flags = 0; zend_bool success; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|l", &source, &flags) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 2) + Z_PARAM_STR(source) + Z_PARAM_OPTIONAL + Z_PARAM_LONG(flags) + ZEND_PARSE_PARAMETERS_END(); if (flags & TOKEN_PARSE) { success = tokenize_parse(return_value, source); @@ -297,9 +299,9 @@ PHP_FUNCTION(token_name) { zend_long type; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &type) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 1) + Z_PARAM_LONG(type) + ZEND_PARSE_PARAMETERS_END(); RETVAL_STRING(get_token_type_name(type)); } -- 2.50.1