fix tests

This commit is contained in:
Anatol Belski 2015-06-29 09:05:56 +02:00
parent a1cf46bb1f
commit 5e3a3461c2
3 changed files with 3 additions and 3 deletions

View File

@ -14,4 +14,4 @@ class bar extends php_user_filter {
}
?>
--EXPECTF--
Warning: Declaration of bar::filter() should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d
Warning: Declaration of bar::filter($in, $out, &$consumed) should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d

View File

@ -9,4 +9,4 @@ class foo extends php_user_filter {
}
?>
--EXPECTF--
Warning: Declaration of foo::filter() should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d
Warning: Declaration of foo::filter($in, $out, $consumed, $closing) should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d

View File

@ -9,4 +9,4 @@ class foo extends php_user_filter {
}
?>
--EXPECTF--
Warning: Declaration of foo::onCreate() should be compatible with php_user_filter::onCreate() in %s on line %d
Warning: Declaration of foo::onCreate($var) should be compatible with php_user_filter::onCreate() in %s on line %d