Use "must not" instead of "cannot" wording

This commit is contained in:
Gina Peter Bnayard 2024-08-20 13:45:39 +02:00 committed by Gina Peter Banyard
parent c811d58953
commit 5853cdb73d
157 changed files with 281 additions and 281 deletions

View File

@ -1,5 +1,5 @@
--TEST-- --TEST--
Property hook list cannot be empty Property hook list must not be empty
--FILE-- --FILE--
<?php <?php
@ -9,4 +9,4 @@ class Test {
?> ?>
--EXPECTF-- --EXPECTF--
Fatal error: Property hook list cannot be empty in %s on line %d Fatal error: Property hook list must not be empty in %s on line %d

View File

@ -439,9 +439,9 @@ ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *
} }
/* }}} */ /* }}} */
ZEND_API ZEND_COLD void zend_argument_cannot_be_empty_error(uint32_t arg_num) ZEND_API ZEND_COLD void zend_argument_must_not_be_empty_error(uint32_t arg_num)
{ {
zend_argument_value_error(arg_num, "cannot be empty"); zend_argument_value_error(arg_num, "must not be empty");
} }
ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_class_entry *old_ce) ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_class_entry *old_ce)

View File

@ -1564,7 +1564,7 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_argument_error_variadic(zend_class_en
ZEND_API ZEND_COLD void zend_argument_error(zend_class_entry *error_ce, uint32_t arg_num, const char *format, ...); ZEND_API ZEND_COLD void zend_argument_error(zend_class_entry *error_ce, uint32_t arg_num, const char *format, ...);
ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format, ...); ZEND_API ZEND_COLD void zend_argument_type_error(uint32_t arg_num, const char *format, ...);
ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *format, ...); ZEND_API ZEND_COLD void zend_argument_value_error(uint32_t arg_num, const char *format, ...);
ZEND_API ZEND_COLD void zend_argument_cannot_be_empty_error(uint32_t arg_num); ZEND_API ZEND_COLD void zend_argument_must_not_be_empty_error(uint32_t arg_num);
ZEND_API ZEND_COLD void zend_class_redeclaration_error(int type, zend_class_entry *old_ce); ZEND_API ZEND_COLD void zend_class_redeclaration_error(int type, zend_class_entry *old_ce);
ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_class_entry *old_ce); ZEND_API ZEND_COLD void zend_class_redeclaration_error_ex(int type, zend_string *new_name, zend_class_entry *old_ce);

View File

@ -8390,7 +8390,7 @@ static void zend_compile_property_hooks(
} }
if (hooks->children == 0) { if (hooks->children == 0) {
zend_error_noreturn(E_COMPILE_ERROR, "Property hook list cannot be empty"); zend_error_noreturn(E_COMPILE_ERROR, "Property hook list must not be empty");
} }
for (uint32_t i = 0; i < hooks->children; i++) { for (uint32_t i = 0; i < hooks->children; i++) {

View File

@ -349,7 +349,7 @@ PHP_FUNCTION(bzopen)
/* If it's not a resource its a string containing the filename to open */ /* If it's not a resource its a string containing the filename to open */
if (Z_TYPE_P(file) == IS_STRING) { if (Z_TYPE_P(file) == IS_STRING) {
if (Z_STRLEN_P(file) == 0) { if (Z_STRLEN_P(file) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -42,8 +42,8 @@ var_dump(bzopen($fp, "r"));
?> ?>
--EXPECTF-- --EXPECTF--
bzopen(): Argument #1 ($file) cannot be empty bzopen(): Argument #1 ($file) must not be empty
bzopen(): Argument #1 ($file) cannot be empty bzopen(): Argument #1 ($file) must not be empty
bzopen(): Argument #2 ($mode) must be either "r" or "w" bzopen(): Argument #2 ($mode) must be either "r" or "w"
bzopen(): Argument #2 ($mode) must be either "r" or "w" bzopen(): Argument #2 ($mode) must be either "r" or "w"
bzopen(): Argument #2 ($mode) must be either "r" or "w" bzopen(): Argument #2 ($mode) must be either "r" or "w"

View File

@ -547,15 +547,15 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, bool persistent)
} }
if (ZSTR_LEN(path) == 0) { if (ZSTR_LEN(path) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
if (ZSTR_LEN(mode) == 0) { if (ZSTR_LEN(mode) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
if (handler_str && ZSTR_LEN(handler_str) == 0) { if (handler_str && ZSTR_LEN(handler_str) == 0) {
zend_argument_cannot_be_empty_error(3); zend_argument_must_not_be_empty_error(3);
RETURN_THROWS(); RETURN_THROWS();
} }
// TODO Check Value for permission // TODO Check Value for permission

View File

@ -121,9 +121,9 @@ object(Dba\Connection)#%d (%d) {
Warning: dba_open(): Handler "bogus" is not available in %s on line %d Warning: dba_open(): Handler "bogus" is not available in %s on line %d
bool(false) bool(false)
dba_open(): Argument #1 ($path) cannot be empty dba_open(): Argument #1 ($path) must not be empty
dba_open(): Argument #2 ($mode) cannot be empty dba_open(): Argument #2 ($mode) must not be empty
dba_open(): Argument #3 ($handler) cannot be empty dba_open(): Argument #3 ($handler) must not be empty
dba_open(): Argument #2 ($mode) first character must be one of "r", "w", "c", or "n" dba_open(): Argument #2 ($mode) first character must be one of "r", "w", "c", or "n"
dba_open(): Argument #2 ($mode) second character must be one of "d", "l", "-", or "t" dba_open(): Argument #2 ($mode) second character must be one of "d", "l", "-", or "t"
dba_open(): Argument #2 ($mode) third character must be "t" dba_open(): Argument #2 ($mode) third character must be "t"
@ -133,9 +133,9 @@ dba_open(): Argument #5 ($map_size) must be greater than or equal to 0
Warning: dba_popen(): Handler "bogus" is not available in %s on line %d Warning: dba_popen(): Handler "bogus" is not available in %s on line %d
bool(false) bool(false)
dba_popen(): Argument #1 ($path) cannot be empty dba_popen(): Argument #1 ($path) must not be empty
dba_popen(): Argument #2 ($mode) cannot be empty dba_popen(): Argument #2 ($mode) must not be empty
dba_popen(): Argument #3 ($handler) cannot be empty dba_popen(): Argument #3 ($handler) must not be empty
dba_popen(): Argument #2 ($mode) first character must be one of "r", "w", "c", or "n" dba_popen(): Argument #2 ($mode) first character must be one of "r", "w", "c", or "n"
dba_popen(): Argument #2 ($mode) second character must be one of "d", "l", "-", or "t" dba_popen(): Argument #2 ($mode) second character must be one of "d", "l", "-", or "t"
dba_popen(): Argument #2 ($mode) third character must be "t" dba_popen(): Argument #2 ($mode) third character must be "t"

View File

@ -1525,7 +1525,7 @@ static void dom_parse_document(INTERNAL_FUNCTION_PARAMETERS, int mode)
} }
if (!source_len) { if (!source_len) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
if (ZEND_SIZE_T_INT_OVFL(source_len)) { if (ZEND_SIZE_T_INT_OVFL(source_len)) {
@ -1579,7 +1579,7 @@ PHP_METHOD(DOMDocument, save)
} }
if (file_len == 0) { if (file_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1883,7 +1883,7 @@ static void dom_document_schema_validate(INTERNAL_FUNCTION_PARAMETERS, int type)
} }
if (!source_len) { if (!source_len) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1992,7 +1992,7 @@ static void dom_document_relaxNG_validate(INTERNAL_FUNCTION_PARAMETERS, int type
} }
if (!source_len) { if (!source_len) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -2085,7 +2085,7 @@ static void dom_load_html(INTERNAL_FUNCTION_PARAMETERS, int mode) /* {{{ */
} }
if (!source_len) { if (!source_len) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -2162,7 +2162,7 @@ PHP_METHOD(DOMDocument, saveHTMLFile)
} }
if (file_len == 0) { if (file_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -64,7 +64,7 @@ PHP_METHOD(DOMImplementation, createDocumentType)
} }
if (name_len == 0) { if (name_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -411,7 +411,7 @@ PHP_METHOD(DOMElement, setAttribute)
} }
if (name_len == 0) { if (name_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -903,7 +903,7 @@ PHP_METHOD(DOMElement, getAttributeNS)
static void dom_set_attribute_ns_legacy(dom_object *intern, xmlNodePtr elemp, char *uri, size_t uri_len, char *name, size_t name_len, const char *value) static void dom_set_attribute_ns_legacy(dom_object *intern, xmlNodePtr elemp, char *uri, size_t uri_len, char *name, size_t name_len, const char *value)
{ {
if (name_len == 0) { if (name_len == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
return; return;
} }

View File

@ -1283,7 +1283,7 @@ PHP_METHOD(Dom_HTMLDocument, saveHtmlFile)
} }
if (file_len == 0) { if (file_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -14,4 +14,4 @@ try {
} }
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::loadHTML(): Argument #1 ($source) cannot be empty DOMDocument::loadHTML(): Argument #1 ($source) must not be empty

View File

@ -23,5 +23,5 @@ try {
} }
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::loadHTMLFile(): Argument #1 ($filename) cannot be empty DOMDocument::loadHTMLFile(): Argument #1 ($filename) must not be empty
DOMDocument::loadHTMLFile(): Argument #1 ($filename) must not contain any null bytes DOMDocument::loadHTMLFile(): Argument #1 ($filename) must not contain any null bytes

View File

@ -13,4 +13,4 @@ try {
} }
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::loadXML(): Argument #1 ($source) cannot be empty DOMDocument::loadXML(): Argument #1 ($source) must not be empty

View File

@ -22,6 +22,6 @@ try {
var_dump($dom->load(str_repeat(" ", PHP_MAXPATHLEN + 1))); var_dump($dom->load(str_repeat(" ", PHP_MAXPATHLEN + 1)));
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::load(): Argument #1 ($filename) cannot be empty DOMDocument::load(): Argument #1 ($filename) must not be empty
DOMDocument::load(): Argument #1 ($filename) must not contain any null bytes DOMDocument::load(): Argument #1 ($filename) must not contain any null bytes
bool(false) bool(false)

View File

@ -24,4 +24,4 @@ try {
} }
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::saveHTMLFile(): Argument #1 ($filename) cannot be empty DOMDocument::saveHTMLFile(): Argument #1 ($filename) must not be empty

View File

@ -20,4 +20,4 @@ try {
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::schemaValidateSource(): Argument #1 ($source) cannot be empty DOMDocument::schemaValidateSource(): Argument #1 ($source) must not be empty

View File

@ -20,4 +20,4 @@ try {
?> ?>
--EXPECT-- --EXPECT--
DOMDocument::schemaValidate(): Argument #1 ($filename) cannot be empty DOMDocument::schemaValidate(): Argument #1 ($filename) must not be empty

View File

@ -11,7 +11,7 @@ $dom->saveHtmlFile("");
?> ?>
--EXPECTF-- --EXPECTF--
Fatal error: Uncaught ValueError: Dom\HTMLDocument::saveHtmlFile(): Argument #1 ($filename) cannot be empty in %s:%d Fatal error: Uncaught ValueError: Dom\HTMLDocument::saveHtmlFile(): Argument #1 ($filename) must not be empty in %s:%d
Stack trace: Stack trace:
#0 %s(%d): Dom\HTMLDocument->saveHtmlFile('') #0 %s(%d): Dom\HTMLDocument->saveHtmlFile('')
#1 {main} #1 {main}

View File

@ -9,7 +9,7 @@ $dom = Dom\HTMLDocument::createFromFile("");
?> ?>
--EXPECTF-- --EXPECTF--
Fatal error: Uncaught ValueError: Path cannot be empty in %s:%d Fatal error: Uncaught ValueError: Path must not be empty in %s:%d
Stack trace: Stack trace:
#0 %s(%d): Dom\HTMLDocument::createFromFile('') #0 %s(%d): Dom\HTMLDocument::createFromFile('')
#1 {main} #1 {main}

View File

@ -447,7 +447,7 @@ PHP_FUNCTION(enchant_broker_request_dict)
PHP_ENCHANT_GET_BROKER; PHP_ENCHANT_GET_BROKER;
if (taglen == 0) { if (taglen == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -18,4 +18,4 @@ try {
?> ?>
--EXPECT-- --EXPECT--
enchant_broker_request_dict(): Argument #2 ($tag) cannot be empty enchant_broker_request_dict(): Argument #2 ($tag) must not be empty

View File

@ -4550,7 +4550,7 @@ PHP_FUNCTION(exif_read_data)
} }
if (!Z_STRLEN_P(stream)) { if (!Z_STRLEN_P(stream)) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -4727,7 +4727,7 @@ PHP_FUNCTION(exif_thumbnail)
} }
if (!Z_STRLEN_P(stream)) { if (!Z_STRLEN_P(stream)) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -31,7 +31,7 @@ try {
?> ?>
--EXPECT-- --EXPECT--
exif_read_data(): Argument #1 ($file) cannot be empty exif_read_data(): Argument #1 ($file) must not be empty
exif_thumbnail(): Argument #1 ($file) cannot be empty exif_thumbnail(): Argument #1 ($file) must not be empty
exif_read_data(): Argument #1 ($file) must not contain any null bytes exif_read_data(): Argument #1 ($file) must not contain any null bytes
exif_thumbnail(): Argument #1 ($file) must not contain any null bytes exif_thumbnail(): Argument #1 ($file) must not contain any null bytes

View File

@ -374,7 +374,7 @@ static void _php_finfo_get_type(INTERNAL_FUNCTION_PARAMETERS, int mode, int mime
php_stream_statbuf ssb; php_stream_statbuf ssb;
if (buffer == NULL || buffer_len == 0) { if (buffer == NULL || buffer_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
goto clean; goto clean;
} }
if (CHECK_NULL_PATH(buffer, buffer_len)) { if (CHECK_NULL_PATH(buffer, buffer_len)) {

View File

@ -22,7 +22,7 @@ var_dump(finfo_file($fp, '&'));
?> ?>
--EXPECTF-- --EXPECTF--
finfo_file(): Argument #1 ($finfo) must not contain any null bytes finfo_file(): Argument #1 ($finfo) must not contain any null bytes
finfo_file(): Argument #1 ($finfo) cannot be empty finfo_file(): Argument #1 ($finfo) must not be empty
string(9) "directory" string(9) "directory"
Warning: finfo_file(&): Failed to open stream: No such file or directory in %s on line %d Warning: finfo_file(&): Failed to open stream: No such file or directory in %s on line %d

View File

@ -47,5 +47,5 @@ mime_content_type(): Argument #1 ($filename) must be of type resource|string, st
mime_content_type(): Argument #1 ($filename) must be of type resource|string, array given mime_content_type(): Argument #1 ($filename) must be of type resource|string, array given
Warning: mime_content_type(foo/inexistent): Failed to open stream: No such file or directory in %s on line %d Warning: mime_content_type(foo/inexistent): Failed to open stream: No such file or directory in %s on line %d
mime_content_type(): Argument #1 ($filename) cannot be empty mime_content_type(): Argument #1 ($filename) must not be empty
mime_content_type(): Argument #1 ($filename) must not contain any null bytes mime_content_type(): Argument #1 ($filename) must not contain any null bytes

View File

@ -382,7 +382,7 @@ void php_filter_float(PHP_INPUT_FILTER_PARAM_DECL) /* {{{ */
if (thousand_set) { if (thousand_set) {
if (thousand_len < 1) { if (thousand_len < 1) {
zend_value_error("%s(): \"thousand\" option cannot be empty", get_active_function_name()); zend_value_error("%s(): \"thousand\" option must not be empty", get_active_function_name());
RETURN_VALIDATION_FAILED RETURN_VALIDATION_FAILED
} else { } else {
tsd_sep = thousand; tsd_sep = thousand;

View File

@ -21,4 +21,4 @@ try {
--EXPECT-- --EXPECT--
float(1000) float(1000)
float(1234.567) float(1234.567)
filter_var(): "thousand" option cannot be empty filter_var(): "thousand" option must not be empty

View File

@ -646,7 +646,7 @@ PHP_FUNCTION(imagesetstyle)
num_styles = zend_hash_num_elements(Z_ARRVAL_P(styles)); num_styles = zend_hash_num_elements(Z_ARRVAL_P(styles));
if (num_styles == 0) { if (num_styles == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -18,5 +18,5 @@ imagedestroy($im);
?> ?>
====DONE==== ====DONE====
--EXPECT-- --EXPECT--
imagesetstyle(): Argument #2 ($style) cannot be empty imagesetstyle(): Argument #2 ($style) must not be empty
====DONE==== ====DONE====

View File

@ -55,7 +55,7 @@ ZEND_GET_MODULE(php_gettext)
zend_argument_value_error(_arg_num, "is too long"); \ zend_argument_value_error(_arg_num, "is too long"); \
RETURN_THROWS(); \ RETURN_THROWS(); \
} else if (domain_len == 0) { \ } else if (domain_len == 0) { \
zend_argument_cannot_be_empty_error(_arg_num); \ zend_argument_must_not_be_empty_error(_arg_num); \
RETURN_THROWS(); \ RETURN_THROWS(); \
} }

View File

@ -33,6 +33,6 @@ string(1) "1"
string(4) "test" string(4) "test"
string(4) "test" string(4) "test"
string(4) "test" string(4) "test"
dcngettext(): Argument #1 ($domain) cannot be empty dcngettext(): Argument #1 ($domain) must not be empty
dcngettext(): Argument #1 ($domain) cannot be empty dcngettext(): Argument #1 ($domain) must not be empty
Done Done

View File

@ -20,8 +20,8 @@ gettext
echo "Done\n"; echo "Done\n";
?> ?>
--EXPECT-- --EXPECT--
bind_textdomain_codeset(): Argument #1 ($domain) cannot be empty bind_textdomain_codeset(): Argument #1 ($domain) must not be empty
bind_textdomain_codeset(): Argument #1 ($domain) cannot be empty bind_textdomain_codeset(): Argument #1 ($domain) must not be empty
string(5) "UTF-8" string(5) "UTF-8"
Done Done
--CREDITS-- --CREDITS--

View File

@ -15,7 +15,7 @@ try {
?> ?>
--EXPECT-- --EXPECT--
bindtextdomain(): Argument #1 ($domain) cannot be empty bindtextdomain(): Argument #1 ($domain) must not be empty
--CREDITS-- --CREDITS--
Till Klampaeckel, till@php.net Till Klampaeckel, till@php.net
PHP Testfest Berlin 2009-05-09 PHP Testfest Berlin 2009-05-09

View File

@ -36,7 +36,7 @@ test
test test
foo foo
textdomain(): Argument #1 ($domain) cannot be zero textdomain(): Argument #1 ($domain) cannot be zero
textdomain(): Argument #1 ($domain) cannot be empty textdomain(): Argument #1 ($domain) must not be empty
--CREDITS-- --CREDITS--
Christian Weiske, cweiske@php.net Christian Weiske, cweiske@php.net
PHP Testfest Berlin 2009-05-09 PHP Testfest Berlin 2009-05-09

View File

@ -635,7 +635,7 @@ PHP_FUNCTION(hash_init)
} }
if (!key || (ZSTR_LEN(key) == 0)) { if (!key || (ZSTR_LEN(key) == 0)) {
/* Note: a zero length key is no key at all */ /* Note: a zero length key is no key at all */
zend_argument_value_error(3, "cannot be empty when HMAC is requested"); zend_argument_value_error(3, "must not be empty when HMAC is requested");
RETURN_THROWS(); RETURN_THROWS();
} }
} }
@ -914,7 +914,7 @@ PHP_FUNCTION(hash_hkdf)
} }
if (ZSTR_LEN(ikm) == 0) { if (ZSTR_LEN(ikm) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -61,6 +61,6 @@ trycatch_dump(
[ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm [ValueError] hash_hkdf(): Argument #1 ($algo) must be a valid cryptographic hashing algorithm
-- Testing hash_hkdf() function with invalid parameters -- -- Testing hash_hkdf() function with invalid parameters --
[ValueError] hash_hkdf(): Argument #2 ($key) cannot be empty [ValueError] hash_hkdf(): Argument #2 ($key) must not be empty
[ValueError] hash_hkdf(): Argument #3 ($length) must be greater than or equal to 0 [ValueError] hash_hkdf(): Argument #3 ($length) must be greater than or equal to 0
[ValueError] hash_hkdf(): Argument #3 ($length) must be less than or equal to 5100 [ValueError] hash_hkdf(): Argument #3 ($length) must be less than or equal to 5100

View File

@ -47,7 +47,7 @@ hash_init(): Argument #1 ($algo) must be a valid hashing algorithm
hash_init(): Argument #1 ($algo) must be a cryptographic hashing algorithm if HMAC is requested hash_init(): Argument #1 ($algo) must be a cryptographic hashing algorithm if HMAC is requested
-- Testing hash_init() function with HASH_HMAC and no key -- -- Testing hash_init() function with HASH_HMAC and no key --
hash_init(): Argument #3 ($key) cannot be empty when HMAC is requested hash_init(): Argument #3 ($key) must not be empty when HMAC is requested
Deprecated: hash_init(): Passing null to parameter #3 ($key) of type string is deprecated in %s on line %d Deprecated: hash_init(): Passing null to parameter #3 ($key) of type string is deprecated in %s on line %d
hash_init(): Argument #3 ($key) cannot be empty when HMAC is requested hash_init(): Argument #3 ($key) must not be empty when HMAC is requested

View File

@ -125,7 +125,7 @@ static void php_intl_idn_handoff(INTERNAL_FUNCTION_PARAMETERS, int mode)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(domain) == 0) { if (ZSTR_LEN(domain) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
if (ZSTR_LEN(domain) > INT32_MAX - 1) { if (ZSTR_LEN(domain) > INT32_MAX - 1) {

View File

@ -186,9 +186,9 @@ static zval *resource_bundle_array_fetch(
if (offset_str) { if (offset_str) {
if (UNEXPECTED(ZSTR_LEN(offset_str) == 0)) { if (UNEXPECTED(ZSTR_LEN(offset_str) == 0)) {
if (offset_arg_num) { if (offset_arg_num) {
zend_argument_cannot_be_empty_error(offset_arg_num); zend_argument_must_not_be_empty_error(offset_arg_num);
} else { } else {
zend_value_error("Offset cannot be empty"); zend_value_error("Offset must not be empty");
} }
return NULL; return NULL;
} }

View File

@ -48,7 +48,7 @@ var_dump($foo["errors"]==IDNA_ERROR_CONTEXTJ);
bad variant: bad variant:
ValueError: idn_to_ascii(): Argument #2 ($flags) must be INTL_IDNA_VARIANT_UTS46 ValueError: idn_to_ascii(): Argument #2 ($flags) must be INTL_IDNA_VARIANT_UTS46
empty domain: empty domain:
ValueError: idn_to_ascii(): Argument #1 ($domain) cannot be empty ValueError: idn_to_ascii(): Argument #1 ($domain) must not be empty
with error, but no details arg: with error, but no details arg:
bool(false) bool(false)
with error, with details arg: with error, with details arg:

View File

@ -57,5 +57,5 @@ Error: Cannot use object of type ResourceBundle as array
string(7) "default" string(7) "default"
TypeError: Cannot access offset of type float on ResourceBundle TypeError: Cannot access offset of type float on ResourceBundle
TypeError: Cannot access offset of type stdClass on ResourceBundle TypeError: Cannot access offset of type stdClass on ResourceBundle
ValueError: Offset cannot be empty ValueError: Offset must not be empty
ValueError: Index must be between -2147483648 and 2147483647 ValueError: Index must be between -2147483648 and 2147483647

View File

@ -1501,7 +1501,7 @@ static void php_ldap_do_search(INTERNAL_FUNCTION_PARAMETERS, int scope)
nlinks = zend_hash_num_elements(Z_ARRVAL_P(link)); nlinks = zend_hash_num_elements(Z_ARRVAL_P(link));
if (nlinks == 0) { if (nlinks == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
ret = 0; ret = 0;
goto cleanup; goto cleanup;
} }
@ -2696,7 +2696,7 @@ PHP_FUNCTION(ldap_modify_batch)
zend_hash_internal_pointer_reset(Z_ARRVAL_P(modinfo)); zend_hash_internal_pointer_reset(Z_ARRVAL_P(modinfo));
num_modvals = zend_hash_num_elements(Z_ARRVAL_P(modinfo)); num_modvals = zend_hash_num_elements(Z_ARRVAL_P(modinfo));
if (num_modvals == 0) { if (num_modvals == 0) {
zend_value_error("%s(): Option \"" LDAP_MODIFY_BATCH_VALUES "\" cannot be empty", get_active_function_name()); zend_value_error("%s(): Option \"" LDAP_MODIFY_BATCH_VALUES "\" must not be empty", get_active_function_name());
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -59,7 +59,7 @@ bool(false)
Warning: ldap_search(): Array initialization wrong in %s on line %d Warning: ldap_search(): Array initialization wrong in %s on line %d
bool(false) bool(false)
ldap_search(): Argument #1 ($ldap) cannot be empty ldap_search(): Argument #1 ($ldap) must not be empty
ldap_search(): Argument #2 ($base) must have the same number of elements as the links array ldap_search(): Argument #2 ($base) must have the same number of elements as the links array
ldap_search(): Argument #3 ($filter) must have the same number of elements as the links array ldap_search(): Argument #3 ($filter) must have the same number of elements as the links array
ldap_search(): Argument #2 ($base) must be of type string when argument #1 ($ldap) is an LDAP instance ldap_search(): Argument #2 ($base) must be of type string when argument #1 ($ldap) is an LDAP instance

View File

@ -2238,7 +2238,7 @@ PHP_FUNCTION(mb_substr_count)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(needle) == 0) { if (ZSTR_LEN(needle) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -2278,7 +2278,7 @@ PHP_FUNCTION(mb_substr_count)
if (ZSTR_LEN(needle_u8) == 0) { if (ZSTR_LEN(needle_u8) == 0) {
zend_string_free(haystack_u8); zend_string_free(haystack_u8);
zend_string_free(needle_u8); zend_string_free(needle_u8);
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
} }
@ -5673,7 +5673,7 @@ PHP_FUNCTION(mb_ord)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (str_len == 0) { if (str_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -5810,7 +5810,7 @@ PHP_FUNCTION(mb_str_pad)
} }
if (ZSTR_LEN(pad) == 0) { if (ZSTR_LEN(pad) == 0) {
zend_argument_cannot_be_empty_error(3); zend_argument_must_not_be_empty_error(3);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -900,7 +900,7 @@ static void _php_mb_regex_ereg_exec(INTERNAL_FUNCTION_PARAMETERS, int icase)
} }
if (arg_pattern_len == 0) { if (arg_pattern_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1468,7 +1468,7 @@ PHP_FUNCTION(mb_ereg_search_init)
} }
if (arg_pattern && arg_pattern_len == 0) { if (arg_pattern && arg_pattern_len == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -43,28 +43,28 @@ foreach($inputs as $input) {
--EXPECT-- --EXPECT--
-- Iteration 1 -- -- Iteration 1 --
Without $regs arg: Without $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
With $regs arg: With $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
NULL NULL
-- Iteration 2 -- -- Iteration 2 --
Without $regs arg: Without $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
With $regs arg: With $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
NULL NULL
-- Iteration 3 -- -- Iteration 3 --
Without $regs arg: Without $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
With $regs arg: With $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
NULL NULL
-- Iteration 4 -- -- Iteration 4 --
Without $regs arg: Without $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
With $regs arg: With $regs arg:
mb_ereg(): Argument #1 ($pattern) cannot be empty mb_ereg(): Argument #1 ($pattern) must not be empty
NULL NULL

View File

@ -25,5 +25,5 @@ try {
?> ?>
--EXPECT-- --EXPECT--
mb_ereg_search_init(): Argument #2 ($pattern) cannot be empty mb_ereg_search_init(): Argument #2 ($pattern) must not be empty
No pattern was provided No pattern was provided

View File

@ -35,7 +35,7 @@ array(3) {
array(0) { array(0) {
} }
} }
ValueError: mb_ereg(): Argument #1 ($pattern) cannot be empty ValueError: mb_ereg(): Argument #1 ($pattern) must not be empty
array(3) { array(3) {
[0]=> [0]=>
string(0) "" string(0) ""

View File

@ -56,7 +56,7 @@ try {
bool(true) bool(true)
bool(true) bool(true)
bool(true) bool(true)
mb_ord(): Argument #1 ($string) cannot be empty mb_ord(): Argument #1 ($string) must not be empty
mb_ord(): Argument #2 ($encoding) must be a valid encoding, "typo" given mb_ord(): Argument #2 ($encoding) must be a valid encoding, "typo" given
mb_ord(): Argument #2 ($encoding) must be a valid encoding, "pass" given mb_ord(): Argument #2 ($encoding) must be a valid encoding, "pass" given
mb_ord() does not support the "JIS" encoding mb_ord() does not support the "JIS" encoding

View File

@ -87,9 +87,9 @@ foreach ($tests as $encoding => $test) {
?> ?>
--EXPECT-- --EXPECT--
--- Error conditions --- --- Error conditions ---
ValueError: mb_str_pad(): Argument #3 ($pad_string) cannot be empty ValueError: mb_str_pad(): Argument #3 ($pad_string) must not be empty
ValueError: mb_str_pad(): Argument #3 ($pad_string) cannot be empty ValueError: mb_str_pad(): Argument #3 ($pad_string) must not be empty
ValueError: mb_str_pad(): Argument #3 ($pad_string) cannot be empty ValueError: mb_str_pad(): Argument #3 ($pad_string) must not be empty
ValueError: mb_str_pad(): Argument #4 ($pad_type) must be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH ValueError: mb_str_pad(): Argument #4 ($pad_type) must be STR_PAD_LEFT, STR_PAD_RIGHT, or STR_PAD_BOTH
ValueError: mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "non-existing" given ValueError: mb_str_pad(): Argument #5 ($encoding) must be a valid encoding, "non-existing" given
--- Simple ASCII strings --- --- Simple ASCII strings ---

View File

@ -69,9 +69,9 @@ output_handler=
?> ?>
--EXPECT-- --EXPECT--
== Empty needle should raise an error == == Empty needle should raise an error ==
mb_substr_count(): Argument #2 ($needle) cannot be empty mb_substr_count(): Argument #2 ($needle) must not be empty
mb_substr_count(): Argument #2 ($needle) cannot be empty mb_substr_count(): Argument #2 ($needle) must not be empty
mb_substr_count(): Argument #2 ($needle) cannot be empty mb_substr_count(): Argument #2 ($needle) must not be empty
== Return value for empty haystack should always be zero == == Return value for empty haystack should always be zero ==
int(0) int(0)
int(0) int(0)

View File

@ -139,7 +139,7 @@ PHP_FUNCTION(mysqli_stmt_bind_param)
MYSQLI_FETCH_RESOURCE_STMT(stmt, mysql_stmt, MYSQLI_STATUS_VALID); MYSQLI_FETCH_RESOURCE_STMT(stmt, mysql_stmt, MYSQLI_STATUS_VALID);
if (!types_len) { if (!types_len) {
zend_argument_cannot_be_empty_error(ERROR_ARG_POS(2)); zend_argument_must_not_be_empty_error(ERROR_ARG_POS(2));
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -572,7 +572,7 @@ PHP_FUNCTION(mysqli_query)
} }
if (!query_len) { if (!query_len) {
zend_argument_cannot_be_empty_error(ERROR_ARG_POS(2)); zend_argument_must_not_be_empty_error(ERROR_ARG_POS(2));
RETURN_THROWS(); RETURN_THROWS();
} }
if ((resultmode & ~MYSQLI_ASYNC) != MYSQLI_USE_RESULT && if ((resultmode & ~MYSQLI_ASYNC) != MYSQLI_USE_RESULT &&
@ -1013,7 +1013,7 @@ PHP_FUNCTION(mysqli_begin_transaction)
RETURN_THROWS(); RETURN_THROWS();
} }
if (name && !name_len) { if (name && !name_len) {
zend_argument_cannot_be_empty_error(ERROR_ARG_POS(3)); zend_argument_must_not_be_empty_error(ERROR_ARG_POS(3));
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1037,7 +1037,7 @@ PHP_FUNCTION(mysqli_savepoint)
} }
MYSQLI_FETCH_RESOURCE_CONN(mysql, mysql_link, MYSQLI_STATUS_VALID); MYSQLI_FETCH_RESOURCE_CONN(mysql, mysql_link, MYSQLI_STATUS_VALID);
if (name_len == 0) { if (name_len == 0) {
zend_argument_cannot_be_empty_error(ERROR_ARG_POS(2)); zend_argument_must_not_be_empty_error(ERROR_ARG_POS(2));
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1061,7 +1061,7 @@ PHP_FUNCTION(mysqli_release_savepoint)
} }
MYSQLI_FETCH_RESOURCE_CONN(mysql, mysql_link, MYSQLI_STATUS_VALID); MYSQLI_FETCH_RESOURCE_CONN(mysql, mysql_link, MYSQLI_STATUS_VALID);
if (name_len == 0) { if (name_len == 0) {
zend_argument_cannot_be_empty_error(ERROR_ARG_POS(2)); zend_argument_must_not_be_empty_error(ERROR_ARG_POS(2));
RETURN_THROWS(); RETURN_THROWS();
} }
if (FAIL == mysqlnd_release_savepoint(mysql->mysql, name)) { if (FAIL == mysqlnd_release_savepoint(mysql->mysql, name)) {

View File

@ -114,7 +114,7 @@ if (!mysqli_query($link, "DROP TABLE IF EXISTS test"))
mysqli_close($link); mysqli_close($link);
?> ?>
--EXPECTF-- --EXPECTF--
mysqli_query(): Argument #2 ($query) cannot be empty mysqli_query(): Argument #2 ($query) must not be empty
array(1) { array(1) {
["valid"]=> ["valid"]=>
string(30) "this is sql but with semicolon" string(30) "this is sql but with semicolon"

View File

@ -61,7 +61,7 @@ if (!have_innodb($link))
require_once 'clean_table.inc'; require_once 'clean_table.inc';
?> ?>
--EXPECT-- --EXPECT--
mysqli_release_savepoint(): Argument #2 ($name) cannot be empty mysqli_release_savepoint(): Argument #2 ($name) must not be empty
array(1) { array(1) {
["id"]=> ["id"]=>
string(1) "1" string(1) "1"

View File

@ -52,5 +52,5 @@ if (!have_innodb($link))
require_once 'clean_table.inc'; require_once 'clean_table.inc';
?> ?>
--EXPECT-- --EXPECT--
mysqli_savepoint(): Argument #2 ($name) cannot be empty mysqli_savepoint(): Argument #2 ($name) must not be empty
done! done!

View File

@ -413,7 +413,7 @@ require_once 'skipifconnectfailure.inc';
?> ?>
--EXPECT-- --EXPECT--
The number of variables must match the number of parameters in the prepared statement The number of variables must match the number of parameters in the prepared statement
mysqli_stmt_bind_param(): Argument #2 ($types) cannot be empty mysqli_stmt_bind_param(): Argument #2 ($types) must not be empty
The number of elements in the type definition string must match the number of bind variables The number of elements in the type definition string must match the number of bind variables
The number of variables must match the number of parameters in the prepared statement The number of variables must match the number of parameters in the prepared statement
The number of elements in the type definition string must match the number of bind variables The number of elements in the type definition string must match the number of bind variables

View File

@ -7243,7 +7243,7 @@ PHP_FUNCTION(openssl_seal)
pubkeysht = Z_ARRVAL_P(pubkeys); pubkeysht = Z_ARRVAL_P(pubkeys);
nkeys = pubkeysht ? zend_hash_num_elements(pubkeysht) : 0; nkeys = pubkeysht ? zend_hash_num_elements(pubkeysht) : 0;
if (!nkeys) { if (!nkeys) {
zend_argument_cannot_be_empty_error(4); zend_argument_must_not_be_empty_error(4);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -8017,7 +8017,7 @@ PHP_FUNCTION(openssl_decrypt)
} }
if (!method_len) { if (!method_len) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -8059,7 +8059,7 @@ PHP_FUNCTION(openssl_cipher_iv_length)
} }
if (ZSTR_LEN(method) == 0) { if (ZSTR_LEN(method) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -8088,7 +8088,7 @@ PHP_FUNCTION(openssl_cipher_key_length)
} }
if (ZSTR_LEN(method) == 0) { if (ZSTR_LEN(method) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -18,4 +18,4 @@ try {
Warning: openssl_cipher_iv_length(): Unknown cipher algorithm in %s on line %d Warning: openssl_cipher_iv_length(): Unknown cipher algorithm in %s on line %d
bool(false) bool(false)
openssl_cipher_iv_length(): Argument #1 ($cipher_algo) cannot be empty openssl_cipher_iv_length(): Argument #1 ($cipher_algo) must not be empty

View File

@ -18,4 +18,4 @@ try {
Warning: openssl_cipher_key_length(): Unknown cipher algorithm in %s on line %d Warning: openssl_cipher_key_length(): Unknown cipher algorithm in %s on line %d
bool(false) bool(false)
openssl_cipher_key_length(): Argument #1 ($cipher_algo) cannot be empty openssl_cipher_key_length(): Argument #1 ($cipher_algo) must not be empty

View File

@ -40,13 +40,13 @@ var_dump(openssl_seal($data, $sealed, $ekeys, array($wrong), $method));
--EXPECTF-- --EXPECTF--
Warning: openssl_seal(): Not a public key (1th member of pubkeys) in %s on line %d Warning: openssl_seal(): Not a public key (1th member of pubkeys) in %s on line %d
bool(false) bool(false)
openssl_seal(): Argument #4 ($public_key) cannot be empty openssl_seal(): Argument #4 ($public_key) must not be empty
int(32) int(32)
int(32) int(32)
Warning: openssl_seal(): Not a public key (2th member of pubkeys) in %s on line %d Warning: openssl_seal(): Not a public key (2th member of pubkeys) in %s on line %d
bool(false) bool(false)
openssl_seal(): Argument #4 ($public_key) cannot be empty openssl_seal(): Argument #4 ($public_key) must not be empty
Warning: openssl_seal(): Not a public key (1th member of pubkeys) in %s on line %d Warning: openssl_seal(): Not a public key (1th member of pubkeys) in %s on line %d
bool(false) bool(false)

View File

@ -860,7 +860,7 @@ static bool php_pcntl_set_user_signal_infos(
bool allow_empty_signal_array bool allow_empty_signal_array
) { ) {
if (!allow_empty_signal_array && zend_hash_num_elements(user_signals) == 0) { if (!allow_empty_signal_array && zend_hash_num_elements(user_signals) == 0) {
zend_argument_cannot_be_empty_error(arg_num); zend_argument_must_not_be_empty_error(arg_num);
return false; return false;
} }
@ -1695,7 +1695,7 @@ PHP_FUNCTION(pcntl_setcpuaffinity)
// TODO Why are the arguments optional? // TODO Why are the arguments optional?
if (!hmask || zend_hash_num_elements(Z_ARRVAL_P(hmask)) == 0) { if (!hmask || zend_hash_num_elements(Z_ARRVAL_P(hmask)) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -60,7 +60,7 @@ array(0) {
array(0) { array(0) {
} }
bool(true) bool(true)
pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cannot be empty pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) must not be empty
pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cpu id invalid value (def) pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cpu id invalid value (def)
pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cpu id must be between 0 and %d (%d) pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cpu id must be between 0 and %d (%d)
pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cpu id must be between 0 and %d (-1024) pcntl_setcpuaffinity(): Argument #2 ($cpu_ids) cpu id must be between 0 and %d (-1024)

View File

@ -60,7 +60,7 @@ try {
?> ?>
--EXPECTF-- --EXPECTF--
ValueError: pcntl_sigprocmask(): Argument #1 ($mode) must be one of SIG_BLOCK, SIG_UNBLOCK, or SIG_SETMASK ValueError: pcntl_sigprocmask(): Argument #1 ($mode) must be one of SIG_BLOCK, SIG_UNBLOCK, or SIG_SETMASK
ValueError: pcntl_sigprocmask(): Argument #2 ($signals) cannot be empty ValueError: pcntl_sigprocmask(): Argument #2 ($signals) must not be empty
ValueError: pcntl_sigprocmask(): Argument #2 ($signals) signals must be between 1 and %d ValueError: pcntl_sigprocmask(): Argument #2 ($signals) signals must be between 1 and %d
ValueError: pcntl_sigprocmask(): Argument #2 ($signals) signals must be between 1 and %d ValueError: pcntl_sigprocmask(): Argument #2 ($signals) signals must be between 1 and %d
TypeError: pcntl_sigprocmask(): Argument #2 ($signals) signals must be of type int, string given TypeError: pcntl_sigprocmask(): Argument #2 ($signals) signals must be of type int, string given

View File

@ -86,7 +86,7 @@ try {
?> ?>
--EXPECTF-- --EXPECTF--
ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) cannot be empty ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) must not be empty
ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) signals must be between 1 and %d ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) signals must be between 1 and %d
ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) signals must be between 1 and %d ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) signals must be between 1 and %d
ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) signals must be between 1 and %d ValueError: pcntl_sigtimedwait(): Argument #1 ($signals) signals must be between 1 and %d

View File

@ -51,7 +51,7 @@ try {
} }
?> ?>
--EXPECTF-- --EXPECTF--
ValueError: pcntl_sigwaitinfo(): Argument #1 ($signals) cannot be empty ValueError: pcntl_sigwaitinfo(): Argument #1 ($signals) must not be empty
ValueError: pcntl_sigwaitinfo(): Argument #1 ($signals) signals must be between 1 and %d ValueError: pcntl_sigwaitinfo(): Argument #1 ($signals) signals must be between 1 and %d
ValueError: pcntl_sigwaitinfo(): Argument #1 ($signals) signals must be between 1 and %d ValueError: pcntl_sigwaitinfo(): Argument #1 ($signals) signals must be between 1 and %d
TypeError: pcntl_sigwaitinfo(): Argument #1 ($signals) signals must be of type int, string given TypeError: pcntl_sigwaitinfo(): Argument #1 ($signals) signals must be of type int, string given

View File

@ -563,7 +563,7 @@ PHP_METHOD(PDO, prepare)
PDO_CONSTRUCT_CHECK; PDO_CONSTRUCT_CHECK;
if (ZSTR_LEN(statement) == 0) { if (ZSTR_LEN(statement) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1030,7 +1030,7 @@ PHP_METHOD(PDO, exec)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(statement) == 0) { if (ZSTR_LEN(statement) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1166,7 +1166,7 @@ PHP_METHOD(PDO, query)
PDO_CONSTRUCT_CHECK; PDO_CONSTRUCT_CHECK;
if (ZSTR_LEN(statement) == 0) { if (ZSTR_LEN(statement) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -1423,7 +1423,7 @@ static void register_bound_param(INTERNAL_FUNCTION_PARAMETERS, int is_param) /*
if (param.name) { if (param.name) {
if (ZSTR_LEN(param.name) == 0) { if (ZSTR_LEN(param.name) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
param.paramno = -1; param.paramno = -1;
@ -1471,7 +1471,7 @@ PHP_METHOD(PDOStatement, bindValue)
if (param.name) { if (param.name) {
if (ZSTR_LEN(param.name) == 0) { if (ZSTR_LEN(param.name) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
param.paramno = -1; param.paramno = -1;

View File

@ -162,7 +162,7 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_emulated'); $db->exec('DROP TABLE IF EXISTS test_prepare_emulated');
?> ?>
--EXPECTF-- --EXPECTF--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
array(1) { array(1) {
["one"]=> ["one"]=>
string(1) "1" string(1) "1"

View File

@ -161,7 +161,7 @@ $db = MySQLPDOTest::factory();
$db->query('DROP TABLE IF EXISTS test_prepare_emulated_anonymous_placeholder'); $db->query('DROP TABLE IF EXISTS test_prepare_emulated_anonymous_placeholder');
?> ?>
--EXPECTF-- --EXPECTF--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
array(1) { array(1) {
[0]=> [0]=>
array(1) { array(1) {

View File

@ -152,5 +152,5 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_emulated_myisam'); $db->exec('DROP TABLE IF EXISTS test_prepare_emulated_myisam');
?> ?>
--EXPECT-- --EXPECT--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
done! done!

View File

@ -164,5 +164,5 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_emulated_myisam_index'); $db->exec('DROP TABLE IF EXISTS test_prepare_emulated_myisam_index');
?> ?>
--EXPECT-- --EXPECT--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
done! done!

View File

@ -165,7 +165,7 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_native'); $db->exec('DROP TABLE IF EXISTS test_prepare_native');
?> ?>
--EXPECT-- --EXPECT--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
array(1) { array(1) {
[0]=> [0]=>
array(1) { array(1) {

View File

@ -243,7 +243,7 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_native_anonymous_placeholder'); $db->exec('DROP TABLE IF EXISTS test_prepare_native_anonymous_placeholder');
?> ?>
--EXPECT-- --EXPECT--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
array(1) { array(1) {
[0]=> [0]=>
array(1) { array(1) {

View File

@ -155,5 +155,5 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_native_myisam'); $db->exec('DROP TABLE IF EXISTS test_prepare_native_myisam');
?> ?>
--EXPECT-- --EXPECT--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
done! done!

View File

@ -175,5 +175,5 @@ $db = MySQLPDOTest::factory();
$db->exec('DROP TABLE IF EXISTS test_prepare_native_myisam_index'); $db->exec('DROP TABLE IF EXISTS test_prepare_native_myisam_index');
?> ?>
--EXPECT-- --EXPECT--
PDO::prepare(): Argument #1 ($query) cannot be empty PDO::prepare(): Argument #1 ($query) must not be empty
done! done!

View File

@ -627,7 +627,7 @@ void pgsqlCopyFromArray_internal(INTERNAL_FUNCTION_PARAMETERS)
} }
if (!zend_hash_num_elements(Z_ARRVAL_P(pg_rows))) { if (!zend_hash_num_elements(Z_ARRVAL_P(pg_rows))) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -82,7 +82,7 @@ PHP_METHOD(Pdo_Sqlite, loadExtension)
} }
if (extension_len == 0) { if (extension_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -4613,7 +4613,7 @@ PHP_FUNCTION(pg_meta_data)
/* php_pgsql_meta_data() asserts that table_name is not empty */ /* php_pgsql_meta_data() asserts that table_name is not empty */
if (ZSTR_LEN(table_name) == 0) { if (ZSTR_LEN(table_name) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -4799,7 +4799,7 @@ PHP_PGSQL_API zend_result php_pgsql_convert(PGconn *pg_link, const zend_string *
ZEND_ASSERT(Z_TYPE_P(result) == IS_ARRAY); ZEND_ASSERT(Z_TYPE_P(result) == IS_ARRAY);
ZEND_ASSERT(!(opt & ~PGSQL_CONV_OPTS)); ZEND_ASSERT(!(opt & ~PGSQL_CONV_OPTS));
ZEND_ASSERT(table_name); ZEND_ASSERT(table_name);
/* Table name cannot be empty for php_pgsql_meta_data() */ /* Table name must not be empty for php_pgsql_meta_data() */
ZEND_ASSERT(ZSTR_LEN(table_name) != 0); ZEND_ASSERT(ZSTR_LEN(table_name) != 0);
array_init(&meta); array_init(&meta);
@ -5405,7 +5405,7 @@ PHP_FUNCTION(pg_convert)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(table_name) == 0) { if (ZSTR_LEN(table_name) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -5618,7 +5618,7 @@ PHP_FUNCTION(pg_insert)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(table) == 0) { if (ZSTR_LEN(table) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -5840,7 +5840,7 @@ PHP_FUNCTION(pg_update)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(table) == 0) { if (ZSTR_LEN(table) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -5939,7 +5939,7 @@ PHP_FUNCTION(pg_delete)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(table) == 0) { if (ZSTR_LEN(table) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -6095,7 +6095,7 @@ PHP_FUNCTION(pg_select)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(table) == 0) { if (ZSTR_LEN(table) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -6143,13 +6143,13 @@ PHP_FUNCTION(pg_change_password)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(user) == 0) { if (ZSTR_LEN(user) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
/* it is technically possible, but better to disallow it */ /* it is technically possible, but better to disallow it */
if (ZSTR_LEN(passwd) == 0) { if (ZSTR_LEN(passwd) == 0) {
zend_argument_cannot_be_empty_error(3); zend_argument_must_not_be_empty_error(3);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -24,6 +24,6 @@ try {
var_dump(pg_change_password($conn, "inexistent_user", "postitpwd")); var_dump(pg_change_password($conn, "inexistent_user", "postitpwd"));
?> ?>
--EXPECT-- --EXPECT--
pg_change_password(): Argument #2 ($user) cannot be empty pg_change_password(): Argument #2 ($user) must not be empty
pg_change_password(): Argument #3 ($password) cannot be empty pg_change_password(): Argument #3 ($password) must not be empty
bool(false) bool(false)

View File

@ -21,7 +21,7 @@ foreach (array('', '.', '..') as $table) {
?> ?>
Done Done
--EXPECTF-- --EXPECTF--
pg_insert(): Argument #2 ($table_name) cannot be empty pg_insert(): Argument #2 ($table_name) must not be empty
pg_insert(): Argument #2 ($table_name) must be specified (.) pg_insert(): Argument #2 ($table_name) must be specified (.)
pg_insert(): Argument #2 ($table_name) must be specified (..) pg_insert(): Argument #2 ($table_name) must be specified (..)
Done Done

View File

@ -65,10 +65,10 @@ foreach($checks as $check)
--EXPECTF-- --EXPECTF--
string(5) "query" string(5) "query"
string(5) "query" string(5) "query"
1:Error: file_put_contents(phar://%s//): Failed to open stream: phar error: file "" in phar "%s" cannot be empty 1:Error: file_put_contents(phar://%s//): Failed to open stream: phar error: file "" in phar "%s" must not be empty
2:Error: file_put_contents(phar://%s/.): Failed to open stream: phar error: file "" in phar "%s" cannot be empty 2:Error: file_put_contents(phar://%s/.): Failed to open stream: phar error: file "" in phar "%s" must not be empty
3:Error: file_put_contents(phar://%s/../): Failed to open stream: phar error: file "" in phar "%s" cannot be empty 3:Error: file_put_contents(phar://%s/../): Failed to open stream: phar error: file "" in phar "%s" must not be empty
4:Error: file_put_contents(phar://%s/a/..): Failed to open stream: phar error: file "" in phar "%s" cannot be empty 4:Error: file_put_contents(phar://%s/a/..): Failed to open stream: phar error: file "" in phar "%s" must not be empty
5: 5:
6: 6:
7: 7:

View File

@ -380,7 +380,7 @@ int phar_get_entry_data(phar_entry_data **ret, char *fname, size_t fname_len, ch
if (!path_len) { if (!path_len) {
if (error) { if (error) {
spprintf(error, 4096, "phar error: file \"\" in phar \"%s\" cannot be empty", fname); spprintf(error, 4096, "phar error: file \"\" in phar \"%s\" must not be empty", fname);
} }
return FAILURE; return FAILURE;
} }

View File

@ -746,7 +746,7 @@ PHP_FUNCTION(posix_eaccess)
path = expand_filepath(filename, NULL); path = expand_filepath(filename, NULL);
if (!path) { if (!path) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1285,7 +1285,7 @@ PHP_FUNCTION(posix_pathconf)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (path_len == 0) { if (path_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} else if (php_check_open_basedir(path)) { } else if (php_check_open_basedir(path)) {
php_error_docref(NULL, E_WARNING, "Invalid path supplied: %s", path); php_error_docref(NULL, E_WARNING, "Invalid path supplied: %s", path);

View File

@ -17,4 +17,4 @@ try {
?> ?>
--EXPECT-- --EXPECT--
posix_eaccess(): Argument #1 ($filename) cannot be empty posix_eaccess(): Argument #1 ($filename) must not be empty

View File

@ -18,7 +18,7 @@ var_dump(posix_errno() != 0);
var_dump(posix_pathconf(sys_get_temp_dir(), POSIX_PC_PATH_MAX)); var_dump(posix_pathconf(sys_get_temp_dir(), POSIX_PC_PATH_MAX));
?> ?>
--EXPECTF-- --EXPECTF--
posix_pathconf(): Argument #1 ($path) cannot be empty posix_pathconf(): Argument #1 ($path) must not be empty
bool(false) bool(false)
bool(true) bool(true)
int(%d) int(%d)

View File

@ -434,7 +434,7 @@ PHP_METHOD(Random_Randomizer, getBytesFromString)
const size_t max_offset = source_length - 1; const size_t max_offset = source_length - 1;
if (source_length < 1) { if (source_length < 1) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -24,5 +24,5 @@ try {
?> ?>
--EXPECTF-- --EXPECTF--
Random\Randomizer::getBytesFromString(): Argument #1 ($string) cannot be empty Random\Randomizer::getBytesFromString(): Argument #1 ($string) must not be empty
Random\Randomizer::getBytesFromString(): Argument #2 ($length) must be greater than 0 Random\Randomizer::getBytesFromString(): Argument #2 ($length) must be greater than 0

View File

@ -43,7 +43,7 @@ try {
?> ?>
--EXPECTF-- --EXPECTF--
Random\Randomizer::pickArrayKeys(): Argument #1 ($array) must be of type array, string given Random\Randomizer::pickArrayKeys(): Argument #1 ($array) must be of type array, string given
Random\Randomizer::pickArrayKeys(): Argument #1 ($array) cannot be empty Random\Randomizer::pickArrayKeys(): Argument #1 ($array) must not be empty
Random\Randomizer::pickArrayKeys(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($array) Random\Randomizer::pickArrayKeys(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($array)
Random\Randomizer::pickArrayKeys(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($array) Random\Randomizer::pickArrayKeys(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($array)
Random\Randomizer::pickArrayKeys(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($array) Random\Randomizer::pickArrayKeys(): Argument #2 ($num) must be between 1 and the number of elements in argument #1 ($array)

View File

@ -1667,7 +1667,7 @@ PHP_METHOD(SimpleXMLElement, addChild)
} }
if (qname_len == 0) { if (qname_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1734,7 +1734,7 @@ PHP_METHOD(SimpleXMLElement, addAttribute)
} }
if (qname_len == 0) { if (qname_len == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -18,6 +18,6 @@ try {
echo $a->asXML(); echo $a->asXML();
?> ?>
--EXPECT-- --EXPECT--
SimpleXMLElement::addAttribute(): Argument #1 ($qualifiedName) cannot be empty SimpleXMLElement::addAttribute(): Argument #1 ($qualifiedName) must not be empty
<?xml version="1.0"?> <?xml version="1.0"?>
<php>testfest</php> <php>testfest</php>

View File

@ -668,7 +668,7 @@ static bool php_snmp_parse_oid(
objid_query->count++; objid_query->count++;
} else if (oid_ht) { /* we got objid array */ } else if (oid_ht) { /* we got objid array */
if (zend_hash_num_elements(oid_ht) == 0) { if (zend_hash_num_elements(oid_ht) == 0) {
zend_value_error("Array of object IDs cannot be empty"); zend_value_error("Array of object IDs must not be empty");
return false; return false;
} }
objid_query->vars = (snmpobjarg *)safe_emalloc(sizeof(snmpobjarg), zend_hash_num_elements(oid_ht), 0); objid_query->vars = (snmpobjarg *)safe_emalloc(sizeof(snmpobjarg), zend_hash_num_elements(oid_ht), 0);

View File

@ -54,7 +54,7 @@ var_dump(snmp2_get($hostname, $community, array('.1.3.6.1.2.1.1.1.0', '.1.3.6.1.
--EXPECTF-- --EXPECTF--
Checking error handling Checking error handling
Empty OID array Empty OID array
Array of object IDs cannot be empty Array of object IDs must not be empty
Checking working Checking working
Single OID Single OID
string(%d) "%s" string(%d) "%s"

View File

@ -571,7 +571,7 @@ PHP_METHOD(SoapParam, __construct)
} }
if (ZSTR_LEN(name) == 0) { if (ZSTR_LEN(name) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -602,11 +602,11 @@ PHP_METHOD(SoapHeader, __construct)
ZEND_PARSE_PARAMETERS_END(); ZEND_PARSE_PARAMETERS_END();
if (ZSTR_LEN(ns) == 0) { if (ZSTR_LEN(ns) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
if (ZSTR_LEN(name) == 0) { if (ZSTR_LEN(name) == 0) {
zend_argument_cannot_be_empty_error(2); zend_argument_must_not_be_empty_error(2);
RETURN_THROWS(); RETURN_THROWS();
} }

View File

@ -26,6 +26,6 @@ $response= $client->__soapCall('function', array(), null, $header);
print $client->__getLastRequest(); print $client->__getLastRequest();
?> ?>
--EXPECT-- --EXPECT--
SoapHeader::__construct(): Argument #1 ($namespace) cannot be empty SoapHeader::__construct(): Argument #1 ($namespace) must not be empty
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="myNS" xmlns:ns2="namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Header><ns2:foo>bar</ns2:foo></SOAP-ENV:Header><SOAP-ENV:Body><ns1:function/></SOAP-ENV:Body></SOAP-ENV:Envelope> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="myNS" xmlns:ns2="namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Header><ns2:foo>bar</ns2:foo></SOAP-ENV:Header><SOAP-ENV:Body><ns1:function/></SOAP-ENV:Body></SOAP-ENV:Envelope>

View File

@ -662,7 +662,7 @@ static void from_zval_write_sun_path(const zval *path, char *sockaddr_un_c, ser_
* this is not required, at least on linux for abstract paths. It also * this is not required, at least on linux for abstract paths. It also
* assumes that the path is not empty */ * assumes that the path is not empty */
if (ZSTR_LEN(path_str) == 0) { if (ZSTR_LEN(path_str) == 0) {
do_from_zval_err(ctx, "%s", "the path is cannot be empty"); do_from_zval_err(ctx, "%s", "the path is must not be empty");
zend_tmp_string_release(tmp_path_str); zend_tmp_string_release(tmp_path_str);
return; return;
} }

View File

@ -696,7 +696,7 @@ static void spl_filesystem_object_construct(INTERNAL_FUNCTION_PARAMETERS, zend_l
} }
if (ZSTR_LEN(path) == 0) { if (ZSTR_LEN(path) == 0) {
zend_argument_cannot_be_empty_error(1); zend_argument_must_not_be_empty_error(1);
RETURN_THROWS(); RETURN_THROWS();
} }
@ -1227,7 +1227,7 @@ PHP_METHOD(SplFileInfo, getLinkTarget)
} }
#if defined(PHP_WIN32) || defined(HAVE_SYMLINK) #if defined(PHP_WIN32) || defined(HAVE_SYMLINK)
if (intern->file_name == NULL) { if (intern->file_name == NULL) {
zend_value_error("Filename cannot be empty"); zend_value_error("Filename must not be empty");
RETURN_THROWS(); RETURN_THROWS();
} }
if (!IS_ABSOLUTE_PATH(ZSTR_VAL(intern->file_name), ZSTR_LEN(intern->file_name))) { if (!IS_ABSOLUTE_PATH(ZSTR_VAL(intern->file_name), ZSTR_LEN(intern->file_name))) {

Some files were not shown because too many files have changed in this diff Show More