diff options
Diffstat (limited to 'tests')
25 files changed, 78 insertions, 78 deletions
diff --git a/tests/classes/abstract_user_call.phpt b/tests/classes/abstract_user_call.phpt index ad96101386..cd8c5c7e36 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 argument #1 ($function) to be a valid callback, cannot call abstract method test_base::func() +call_user_func(): Argument #1 ($function) must 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 7932fd4240..6903d9d8ba 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: f() expects argument #1 ($x) to be of type UndefClass, stdClass given, called in %s on line %d and defined in %s:%d +Fatal error: Uncaught TypeError: f(): Argument #1 ($x) must 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 7ed944dc48..7a168b3275 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 argument #1 ($function) to be a valid callback, class 'UndefC' not found +call_user_func(): Argument #1 ($function) must be a valid callback, class 'UndefC' not found diff --git a/tests/classes/bug27504.phpt b/tests/classes/bug27504.phpt index a56efde2d9..74d14c8a40 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 argument #1 ($function) to be a valid callback, cannot access private method foo::bar() +call_user_func_array(): Argument #1 ($function) must 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 02968a9b3b..987298baa5 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 argument #1 ($format) to be of type string, object given +printf(): Argument #1 ($format) must 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 ca476187f3..f1c1973cf3 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: FooBar::a() expects argument #1 ($foo) to be of type Foo, Blort given, called in %s on line 27 and defined in %s:12 +Fatal error: Uncaught TypeError: FooBar::a(): Argument #1 ($foo) must 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 a491a26a62..765de66bab 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: Foo::a() expects argument #1 ($foo) to be of type NonExisting, Foo given, called in %s on line %d and defined in %s:%d +Fatal error: Uncaught TypeError: Foo::a(): Argument #1 ($foo) must 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 c43f13dbef..fab088daae 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: Test::f1() expects argument #1 ($ar) to be of type array, int given, called in %s on line %d and defined in %s:%d +Fatal error: Uncaught TypeError: Test::f1(): Argument #1 ($ar) must 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 299ec1dd46..2ba8870b0a 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: f1() expects argument #1 ($a) to be of type A, int given%s(%d) +0: f1(): Argument #1 ($a) must be of type A, int given%s(%d) in f1; -0: f2() expects argument #1 ($a) to be of type ?A, int given%s(%d) +0: f2(): Argument #1 ($a) must 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: C::f1() expects argument #1 ($a) to be of type A, int given%s(%d) +0: C::f1(): Argument #1 ($a) must be of type A, int given%s(%d) in C::f1 (static); -0: C::f2() expects argument #1 ($a) to be of type ?A, int given%s(%d) +0: C::f2(): Argument #1 ($a) must 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: D::f1() expects argument #1 ($a) to be of type A, int given%s(%d) +0: D::f1(): Argument #1 ($a) must be of type A, int given%s(%d) in C::f1 (instance); -0: D::f2() expects argument #1 ($a) to be of type ?A, int given%s(%d) +0: D::f2(): Argument #1 ($a) must 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 5f35b3a229..6b2804cfd4 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: typehint() expects argument #1 ($a) to be of type foo, int given in %s:%d +Fatal error: Uncaught TypeError: typehint(): Argument #1 ($a) must 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 4d785592d8..a7481b6ea6 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: 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 +Fatal error: Uncaught TypeError: blah(): Argument #1 ($a) must 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 70e054c698..50f06051e3 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-- -blah() expects argument #1 ($a) to be of type Foo, stdClass given, called in %scatchable_error_002.php on line %d +blah(): Argument #1 ($a) must 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 eb17ff5b8d..293b469cd2 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: 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 +Fatal error: Uncaught TypeError: type_hint_foo(): Argument #1 ($a) must 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 9041461150..72b80891cd 100644 --- a/tests/output/sapi_windows_vt100_support_winko_err.phpt +++ b/tests/output/sapi_windows_vt100_support_winko_err.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 8e4509370e..45d288f15b 100644 --- a/tests/output/sapi_windows_vt100_support_winko_in-err.phpt +++ b/tests/output/sapi_windows_vt100_support_winko_in-err.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 4ee1fd0cd6..6e42372cb8 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 @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 f330e124c2..f3e0502460 100644 --- a/tests/output/sapi_windows_vt100_support_winko_in-out.phpt +++ b/tests/output/sapi_windows_vt100_support_winko_in-out.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 82694ad586..bd95ea7cb7 100644 --- a/tests/output/sapi_windows_vt100_support_winko_out-err.phpt +++ b/tests/output/sapi_windows_vt100_support_winko_out-err.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : diff --git a/tests/output/sapi_windows_vt100_support_winko_out.phpt b/tests/output/sapi_windows_vt100_support_winko_out.phpt index a46f1767f3..a937bb9ac8 100644 --- a/tests/output/sapi_windows_vt100_support_winko_out.phpt +++ b/tests/output/sapi_windows_vt100_support_winko_out.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : diff --git a/tests/output/sapi_windows_vt100_support_winok_err.phpt b/tests/output/sapi_windows_vt100_support_winok_err.phpt index eca06f2819..2cc9b94fa9 100644 --- a/tests/output/sapi_windows_vt100_support_winok_err.phpt +++ b/tests/output/sapi_windows_vt100_support_winok_err.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 366de4b0fe..0f1a9f4625 100644 --- a/tests/output/sapi_windows_vt100_support_winok_in-err.phpt +++ b/tests/output/sapi_windows_vt100_support_winok_in-err.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 9166cc47d0..0355dc4091 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 @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 526c0dd098..e751877027 100644 --- a/tests/output/sapi_windows_vt100_support_winok_in-out.phpt +++ b/tests/output/sapi_windows_vt100_support_winok_in-out.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : 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 826aedb114..ce273f1780 100644 --- a/tests/output/sapi_windows_vt100_support_winok_out-err.phpt +++ b/tests/output/sapi_windows_vt100_support_winok_out-err.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : diff --git a/tests/output/sapi_windows_vt100_support_winok_out.phpt b/tests/output/sapi_windows_vt100_support_winok_out.phpt index b7b4ff34be..0ca0cde849 100644 --- a/tests/output/sapi_windows_vt100_support_winok_out.phpt +++ b/tests/output/sapi_windows_vt100_support_winok_out.phpt @@ -78,19 +78,19 @@ STDERR (php://fd/2): - current value : bool(false) Not a stream: - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - enabling VT100 : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - disabling VT100: -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) - current value : -Warning: sapi_windows_vt100_support() expects argument #1 to be of type resource, string given in %s on line %d +Warning: sapi_windows_vt100_support(): Argument #1 must be of type resource, string given in %s on line %d bool(false) Invalid stream (php://temp): - current value : |
