diff options
author | Xinchen Hui <laruence@php.net> | 2011-09-23 15:08:11 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-09-23 15:08:11 +0000 |
commit | 8cefbca521c944d6fbcda7da7eb1a538d8332f71 (patch) | |
tree | 942a0e32ebf8a9e5bd5a4dd402bdadffe5f45db0 /ext | |
parent | 659fc4b0f44c164deae62b1ed30385770876369f (diff) | |
download | php-git-8cefbca521c944d6fbcda7da7eb1a538d8332f71.tar.gz |
Improve the warning message of incompatible arguments. (#55719)
And fix tests related.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/tests/filters/php_user_filter_01.phpt | 2 | ||||
-rw-r--r-- | ext/standard/tests/filters/php_user_filter_02.phpt | 2 | ||||
-rw-r--r-- | ext/standard/tests/filters/php_user_filter_03.phpt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/filters/php_user_filter_01.phpt b/ext/standard/tests/filters/php_user_filter_01.phpt index 534b9abf32..e4a9c6853c 100644 --- a/ext/standard/tests/filters/php_user_filter_01.phpt +++ b/ext/standard/tests/filters/php_user_filter_01.phpt @@ -14,4 +14,4 @@ class bar extends php_user_filter { } ?> --EXPECTF-- -Strict Standards: Declaration of bar::filter() should be compatible with that of php_user_filter::filter() in %s on line %d +Strict Standards: Declaration of bar::filter() should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d diff --git a/ext/standard/tests/filters/php_user_filter_02.phpt b/ext/standard/tests/filters/php_user_filter_02.phpt index 73a1f02672..2a1dbfdadf 100644 --- a/ext/standard/tests/filters/php_user_filter_02.phpt +++ b/ext/standard/tests/filters/php_user_filter_02.phpt @@ -9,4 +9,4 @@ class foo extends php_user_filter { } ?> --EXPECTF-- -Strict Standards: Declaration of foo::filter() should be compatible with that of php_user_filter::filter() in %s on line %d +Strict Standards: Declaration of foo::filter() should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d diff --git a/ext/standard/tests/filters/php_user_filter_03.phpt b/ext/standard/tests/filters/php_user_filter_03.phpt index 5962951eee..e9e0266381 100644 --- a/ext/standard/tests/filters/php_user_filter_03.phpt +++ b/ext/standard/tests/filters/php_user_filter_03.phpt @@ -9,4 +9,4 @@ class foo extends php_user_filter { } ?> --EXPECTF-- -Strict Standards: Declaration of foo::onCreate() should be compatible with that of php_user_filter::onCreate() in %s on line %d +Strict Standards: Declaration of foo::onCreate() should be compatible with php_user_filter::onCreate() in %s on line %d |