1
0
mirror of https://github.com/php/php-src.git synced 2026-04-02 21:52:36 +02:00
Files
archived-php-src/ext/spl
Levi Morrison 07a1921a8c refactor: use ZEND_PARSE_PARAMETERS_NONE() (#14442)
Prefer:

	ZEND_PARSE_PARAMETERS_NONE();

Over:

	if (zend_parse_parameters_none() == FAILURE) {
		RETURN_THROWS();
	}

It's shorter, more modern, and they do the same thing. Technically,
ZEND_PARSE_PARAMETERS_NONE doesn't check that there's an exception,
but it generates one, so it's still cohesive.
2024-06-02 23:58:24 +01:00
..
2024-05-21 23:24:28 +02:00
2021-06-18 15:22:52 +01:00
2021-06-18 15:22:52 +01:00
2021-06-18 15:22:52 +01:00
2022-04-13 20:34:23 +01:00