diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-05-25 19:28:15 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-05-26 19:06:19 +0200 |
commit | fbe30592d6bec94463c68b27eabffca3a50c474e (patch) | |
tree | 5f7e2ca5bb754504eb0e4f7a49609088832172aa /ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt | |
parent | 38c85efe83004d98b7cce89689b40de32f8b8add (diff) | |
download | php-git-fbe30592d6bec94463c68b27eabffca3a50c474e.tar.gz |
Improve type error messages when an object is given
From now on, we always display the given object's type instead of just reporting "object".
Additionally, make the format of return type errors match the format of argument errors.
Closes GH-5625
Diffstat (limited to 'ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt')
-rw-r--r-- | ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt b/ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt index 0e7aff3d23..e6af0887da 100644 --- a/ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt +++ b/ext/standard/tests/array/array_uintersect_uassoc_variation2.phpt @@ -168,10 +168,10 @@ array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, string giv array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, string given --instance of classWithToString-- -array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, object given +array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, classWithToString given --instance of classWithoutToString-- -array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, object given +array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, classWithoutToString given --undefined var-- array_uintersect_uassoc(): Argument #2 ($arr2) must be of type array, null given |