summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-01-29 20:06:13 +0100
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-02-17 14:22:17 +0100
commitac0853eb265784c4238af652de9c54c883ffa99f (patch)
treee9316872480304e9e74ce89bd15052965cc18438 /tests
parent72bd55902d1908857f47555ad69458861e1acd94 (diff)
downloadphp-git-ac0853eb265784c4238af652de9c54c883ffa99f.tar.gz
Make type error messages more consistent
Closes GH-5092
Diffstat (limited to 'tests')
-rw-r--r--tests/classes/abstract_user_call.phpt2
-rw-r--r--tests/classes/autoload_009.phpt2
-rw-r--r--tests/classes/autoload_012.phpt2
-rw-r--r--tests/classes/bug27504.phpt2
-rw-r--r--tests/classes/tostring_004.phpt2
-rw-r--r--tests/classes/type_hinting_001.phpt2
-rw-r--r--tests/classes/type_hinting_002.phpt2
-rw-r--r--tests/classes/type_hinting_003.phpt2
-rw-r--r--tests/classes/type_hinting_004.phpt12
-rw-r--r--tests/lang/bug24658.phpt2
-rw-r--r--tests/lang/catchable_error_001.phpt2
-rw-r--r--tests/lang/catchable_error_002.phpt2
-rw-r--r--tests/lang/type_hints_001.phpt2
-rw-r--r--tests/output/sapi_windows_vt100_support_winko_err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winko_in-err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winko_in-out-err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winko_in-out.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winko_out-err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winko_out.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winok_err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winok_in-err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winok_in-out-err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winok_in-out.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winok_out-err.phpt50
-rw-r--r--tests/output/sapi_windows_vt100_support_winok_out.phpt50
25 files changed, 318 insertions, 318 deletions
diff --git a/tests/classes/abstract_user_call.phpt b/tests/classes/abstract_user_call.phpt
index 0a61d477b6..ad96101386 100644
--- a/tests/classes/abstract_user_call.phpt
+++ b/tests/classes/abstract_user_call.phpt
@@ -29,4 +29,4 @@ try {
?>
--EXPECT--
test::func()
-call_user_func() expects parameter 1 to be a valid callback, cannot call abstract method test_base::func()
+call_user_func() expects argument #1 ($function) to be a valid callback, cannot call abstract method test_base::func()
diff --git a/tests/classes/autoload_009.phpt b/tests/classes/autoload_009.phpt
index 63f1ea9801..7932fd4240 100644
--- a/tests/classes/autoload_009.phpt
+++ b/tests/classes/autoload_009.phpt
@@ -13,7 +13,7 @@ function f(UndefClass $x)
f(new stdClass);
?>
--EXPECTF--
-Fatal error: Uncaught TypeError: Argument 1 passed to f() must be an instance of UndefClass, instance of stdClass given, called in %s on line %d and defined in %s:%d
+Fatal error: Uncaught TypeError: f() expects argument #1 ($x) to be of type UndefClass, stdClass given, called in %s on line %d and defined in %s:%d
Stack trace:
#0 %s(%d): f(Object(stdClass))
#1 {main}
diff --git a/tests/classes/autoload_012.phpt b/tests/classes/autoload_012.phpt
index c5b32debae..7ed944dc48 100644
--- a/tests/classes/autoload_012.phpt
+++ b/tests/classes/autoload_012.phpt
@@ -14,4 +14,4 @@ try {
?>
--EXPECT--
In autoload: string(6) "UndefC"
-call_user_func() expects parameter 1 to be a valid callback, class 'UndefC' not found
+call_user_func() expects argument #1 ($function) to be a valid callback, class 'UndefC' not found
diff --git a/tests/classes/bug27504.phpt b/tests/classes/bug27504.phpt
index 4e227a1075..a56efde2d9 100644
--- a/tests/classes/bug27504.phpt
+++ b/tests/classes/bug27504.phpt
@@ -27,5 +27,5 @@ try {
?>
--EXPECT--
Called function foo:bar(1)
-call_user_func_array() expects parameter 1 to be a valid callback, cannot access private method foo::bar()
+call_user_func_array() expects argument #1 ($function) to be a valid callback, cannot access private method foo::bar()
Call to private method foo::bar() from context ''
diff --git a/tests/classes/tostring_004.phpt b/tests/classes/tostring_004.phpt
index 8cde860d56..02968a9b3b 100644
--- a/tests/classes/tostring_004.phpt
+++ b/tests/classes/tostring_004.phpt
@@ -53,7 +53,7 @@ try {
--EXPECT--
Object with no __toString():
Try 1:
-printf() expects parameter 1 to be string, object given
+printf() expects argument #1 ($format) to be of type string, object given
Try 2:
diff --git a/tests/classes/type_hinting_001.phpt b/tests/classes/type_hinting_001.phpt
index fdc74a3194..ca476187f3 100644
--- a/tests/classes/type_hinting_001.phpt
+++ b/tests/classes/type_hinting_001.phpt
@@ -32,7 +32,7 @@ $a->b($b);
?>
--EXPECTF--
-Fatal error: Uncaught TypeError: Argument 1 passed to FooBar::a() must implement interface Foo, instance of Blort given, called in %s on line 27 and defined in %s:12
+Fatal error: Uncaught TypeError: FooBar::a() expects argument #1 ($foo) to be of type Foo, Blort given, called in %s on line 27 and defined in %s:12
Stack trace:
#0 %s(%d): FooBar->a(Object(Blort))
#1 {main}
diff --git a/tests/classes/type_hinting_002.phpt b/tests/classes/type_hinting_002.phpt
index 23d201a51a..a491a26a62 100644
--- a/tests/classes/type_hinting_002.phpt
+++ b/tests/classes/type_hinting_002.phpt
@@ -11,7 +11,7 @@ $o = new Foo;
$o->a($o);
?>
--EXPECTF--
-Fatal error: Uncaught TypeError: Argument 1 passed to Foo::a() must be an instance of NonExisting, instance of Foo given, called in %s on line %d and defined in %s:%d
+Fatal error: Uncaught TypeError: Foo::a() expects argument #1 ($foo) to be of type NonExisting, Foo given, called in %s on line %d and defined in %s:%d
Stack trace:
#0 %s(%d): Foo->a(Object(Foo))
#1 {main}
diff --git a/tests/classes/type_hinting_003.phpt b/tests/classes/type_hinting_003.phpt
index 9dfbd7c3b8..c43f13dbef 100644
--- a/tests/classes/type_hinting_003.phpt
+++ b/tests/classes/type_hinting_003.phpt
@@ -57,7 +57,7 @@ array(1) {
int(25)
}
-Fatal error: Uncaught TypeError: Argument 1 passed to Test::f1() must be of the type array, int given, called in %s on line %d and defined in %s:%d
+Fatal error: Uncaught TypeError: Test::f1() expects argument #1 ($ar) to be of type array, int given, called in %s on line %d and defined in %s:%d
Stack trace:
#0 %s(%d): Test::f1(1)
#1 {main}
diff --git a/tests/classes/type_hinting_004.phpt b/tests/classes/type_hinting_004.phpt
index 27f15a3e16..299ec1dd46 100644
--- a/tests/classes/type_hinting_004.phpt
+++ b/tests/classes/type_hinting_004.phpt
@@ -144,10 +144,10 @@ Ensure type hints are enforced for functions invoked as callbacks.
?>
--EXPECTF--
---> Type hints with callback function:
-0: Argument 1 passed to f1() must be an instance of A, int given%s(%d)
+0: f1() expects argument #1 ($a) to be of type A, int given%s(%d)
in f1;
-0: Argument 1 passed to f2() must be an instance of A or null, int given%s(%d)
+0: f2() expects argument #1 ($a) to be of type ?A, int given%s(%d)
in f2;
in f2;
@@ -155,10 +155,10 @@ in f2;
---> Type hints with callback static method:
-0: Argument 1 passed to C::f1() must be an instance of A, int given%s(%d)
+0: C::f1() expects argument #1 ($a) to be of type A, int given%s(%d)
in C::f1 (static);
-0: Argument 1 passed to C::f2() must be an instance of A or null, int given%s(%d)
+0: C::f2() expects argument #1 ($a) to be of type ?A, int given%s(%d)
in C::f2 (static);
in C::f2 (static);
@@ -166,10 +166,10 @@ in C::f2 (static);
---> Type hints with callback instance method:
-0: Argument 1 passed to D::f1() must be an instance of A, int given%s(%d)
+0: D::f1() expects argument #1 ($a) to be of type A, int given%s(%d)
in C::f1 (instance);
-0: Argument 1 passed to D::f2() must be an instance of A or null, int given%s(%d)
+0: D::f2() expects argument #1 ($a) to be of type ?A, int given%s(%d)
in C::f2 (instance);
in C::f2 (instance);
diff --git a/tests/lang/bug24658.phpt b/tests/lang/bug24658.phpt
index 4baa195242..5f35b3a229 100644
--- a/tests/lang/bug24658.phpt
+++ b/tests/lang/bug24658.phpt
@@ -53,7 +53,7 @@ int(2)
object(foo)#%d (0) {
}
-Fatal error: Uncaught TypeError: Argument 1 passed to typehint() must be an instance of foo, int given in %s:%d
+Fatal error: Uncaught TypeError: typehint() expects argument #1 ($a) to be of type foo, int given in %s:%d
Stack trace:
#0 [internal function]: typehint(1, 1)
#1 %s(%d): array_walk(Array, 'typehint')
diff --git a/tests/lang/catchable_error_001.phpt b/tests/lang/catchable_error_001.phpt
index 499ac14430..4d785592d8 100644
--- a/tests/lang/catchable_error_001.phpt
+++ b/tests/lang/catchable_error_001.phpt
@@ -19,7 +19,7 @@ Catchable fatal error [1]
echo "ALIVE!\n";
?>
--EXPECTF--
-Fatal error: Uncaught TypeError: Argument 1 passed to blah() must be an instance of Foo, instance of stdClass given, called in %scatchable_error_001.php on line 15 and defined in %scatchable_error_001.php:5
+Fatal error: Uncaught TypeError: blah() expects argument #1 ($a) to be of type Foo, stdClass given, called in %scatchable_error_001.php on line 15 and defined in %scatchable_error_001.php:5
Stack trace:
#0 %s(%d): blah(Object(stdClass))
#1 {main}
diff --git a/tests/lang/catchable_error_002.phpt b/tests/lang/catchable_error_002.phpt
index 7cdc02c899..70e054c698 100644
--- a/tests/lang/catchable_error_002.phpt
+++ b/tests/lang/catchable_error_002.phpt
@@ -25,5 +25,5 @@ Catchable fatal error [2]
echo "ALIVE!\n";
?>
--EXPECTF--
-Argument 1 passed to blah() must be an instance of Foo, instance of stdClass given, called in %scatchable_error_002.php on line %d
+blah() expects argument #1 ($a) to be of type Foo, stdClass given, called in %scatchable_error_002.php on line %d
ALIVE!
diff --git a/tests/lang/type_hints_001.phpt b/tests/lang/type_hints_001.phpt
index f82a53fe75..eb17ff5b8d 100644
--- a/tests/lang/type_hints_001.phpt
+++ b/tests/lang/type_hints_001.phpt
@@ -20,7 +20,7 @@ type_hint_foo($bar);
?>
--EXPECTF--
-Fatal error: Uncaught TypeError: Argument 1 passed to type_hint_foo() must be an instance of Foo, instance of Bar given, called in %s on line 16 and defined in %s:9
+Fatal error: Uncaught TypeError: type_hint_foo() expects argument #1 ($a) to be of type Foo, Bar given, called in %s on line 16 and defined in %s:9
Stack trace:
#0 %s(%d): type_hint_foo(Object(Bar))
#1 {main}
diff --git a/tests/output/sapi_windows_vt100_support_winko_err.phpt b/tests/output/sapi_windows_vt100_support_winko_err.phpt
index 07c6355dab..9041461150 100644
--- a/tests/output/sapi_windows_vt100_support_winko_err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winko_err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winko_in-err.phpt b/tests/output/sapi_windows_vt100_support_winko_in-err.phpt
index ef2f573584..8e4509370e 100644
--- a/tests/output/sapi_windows_vt100_support_winko_in-err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winko_in-err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winko_in-out-err.phpt b/tests/output/sapi_windows_vt100_support_winko_in-out-err.phpt
index 600c92e704..4ee1fd0cd6 100644
--- a/tests/output/sapi_windows_vt100_support_winko_in-out-err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winko_in-out-err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winko_in-out.phpt b/tests/output/sapi_windows_vt100_support_winko_in-out.phpt
index 727d053579..f330e124c2 100644
--- a/tests/output/sapi_windows_vt100_support_winko_in-out.phpt
+++ b/tests/output/sapi_windows_vt100_support_winko_in-out.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(true)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winko_out-err.phpt b/tests/output/sapi_windows_vt100_support_winko_out-err.phpt
index 6448651f71..82694ad586 100644
--- a/tests/output/sapi_windows_vt100_support_winko_out-err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winko_out-err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winko_out.phpt b/tests/output/sapi_windows_vt100_support_winko_out.phpt
index ce111741c0..a46f1767f3 100644
--- a/tests/output/sapi_windows_vt100_support_winko_out.phpt
+++ b/tests/output/sapi_windows_vt100_support_winko_out.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(true)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winok_err.phpt b/tests/output/sapi_windows_vt100_support_winok_err.phpt
index 9354df4f94..eca06f2819 100644
--- a/tests/output/sapi_windows_vt100_support_winok_err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winok_err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winok_in-err.phpt b/tests/output/sapi_windows_vt100_support_winok_in-err.phpt
index 0be05527a9..366de4b0fe 100644
--- a/tests/output/sapi_windows_vt100_support_winok_in-err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winok_in-err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winok_in-out-err.phpt b/tests/output/sapi_windows_vt100_support_winok_in-out-err.phpt
index e497c5f55a..9166cc47d0 100644
--- a/tests/output/sapi_windows_vt100_support_winok_in-out-err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winok_in-out-err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winok_in-out.phpt b/tests/output/sapi_windows_vt100_support_winok_in-out.phpt
index 363e3ae0fa..526c0dd098 100644
--- a/tests/output/sapi_windows_vt100_support_winok_in-out.phpt
+++ b/tests/output/sapi_windows_vt100_support_winok_in-out.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(true)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winok_out-err.phpt b/tests/output/sapi_windows_vt100_support_winok_out-err.phpt
index 8bd6ee6bdd..826aedb114 100644
--- a/tests/output/sapi_windows_vt100_support_winok_out-err.phpt
+++ b/tests/output/sapi_windows_vt100_support_winok_out-err.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(false)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream:
diff --git a/tests/output/sapi_windows_vt100_support_winok_out.phpt b/tests/output/sapi_windows_vt100_support_winok_out.phpt
index c649764c4c..b7b4ff34be 100644
--- a/tests/output/sapi_windows_vt100_support_winok_out.phpt
+++ b/tests/output/sapi_windows_vt100_support_winok_out.phpt
@@ -77,67 +77,67 @@ STDERR (php://fd/2):
- disabling VT100: bool(true)
- current value : bool(false)
Not a stream:
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- enabling VT100 :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- enabling VT100 :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- disabling VT100:
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- disabling VT100:
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
-- current value :
-Warning: sapi_windows_vt100_support() expects parameter 1 to be resource, string given in %s on line %d
+- current value :
+Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d
bool(false)
Invalid stream (php://temp):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://input):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
Invalid stream (php://memory):
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- enabling VT100 :
+- enabling VT100 :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- disabling VT100:
+- disabling VT100:
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
-- current value :
+- current value :
Warning: sapi_windows_vt100_support() was not able to analyze the specified stream in %s on line %d
bool(false)
File stream: