diff options
| author | Gabriel Caruso <carusogabriel34@gmail.com> | 2018-02-04 11:33:49 -0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2018-02-04 19:08:23 +0100 |
| commit | ce1d69a1f6dcf15d43029301059c25e5bc09a577 (patch) | |
| tree | 3df785771b4bfa07a9e270b04750840ed47f1cbf /tests/output | |
| parent | 4861730a945908208a049b0c037ddf4a339f999a (diff) | |
| download | php-git-ce1d69a1f6dcf15d43029301059c25e5bc09a577.tar.gz | |
Use int instead of integer in type errors
PHP requires integer typehints to be written "int" and does not
allow "integer" as an alias. This changes type error messages to
match the actual type name and avoids confusing messages like
"must be of the type integer, integer given".
Diffstat (limited to 'tests/output')
| -rw-r--r-- | tests/output/ob_implicit_flush_variation_001.phpt | 24 | ||||
| -rw-r--r-- | tests/output/ob_start_error_001.phpt | 4 |
2 files changed, 14 insertions, 14 deletions
diff --git a/tests/output/ob_implicit_flush_variation_001.phpt b/tests/output/ob_implicit_flush_variation_001.phpt index 64c911d447..8f2442f8f8 100644 --- a/tests/output/ob_implicit_flush_variation_001.phpt +++ b/tests/output/ob_implicit_flush_variation_001.phpt @@ -122,19 +122,19 @@ NULL NULL --empty array-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, array given, %s(97) NULL --int indexed array-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, array given, %s(97) NULL --associative array-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, array given, %s(97) NULL --nested arrays-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, array given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, array given, %s(97) NULL --uppercase NULL-- @@ -156,35 +156,35 @@ NULL NULL --empty string DQ-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, string given, %s(97) NULL --empty string SQ-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, string given, %s(97) NULL --string DQ-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, string given, %s(97) NULL --string SQ-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, string given, %s(97) NULL --mixed case string-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, string given, %s(97) NULL --heredoc-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, string given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, string given, %s(97) NULL --instance of classWithToString-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, object given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, object given, %s(97) NULL --instance of classWithoutToString-- -Error: 2 - ob_implicit_flush() expects parameter 1 to be integer, object given, %s(97) +Error: 2 - ob_implicit_flush() expects parameter 1 to be int, object given, %s(97) NULL --undefined var-- diff --git a/tests/output/ob_start_error_001.phpt b/tests/output/ob_start_error_001.phpt index 34aa13d802..92372c7747 100644 --- a/tests/output/ob_start_error_001.phpt +++ b/tests/output/ob_start_error_001.phpt @@ -44,10 +44,10 @@ bool(false) - Arg 2 wrong type -Warning: ob_start() expects parameter 2 to be integer, string given in %s on line 23 +Warning: ob_start() expects parameter 2 to be int, string given in %s on line 23 NULL - Arg 3 wrong type -Warning: ob_start() expects parameter 3 to be integer, string given in %s on line 26 +Warning: ob_start() expects parameter 3 to be int, string given in %s on line 26 NULL |
