1--TEST--
2class php_user_filter#1
3--FILE--
4<?php
5class foo extends php_user_filter {
6    function filter($in, $out, &$consumed, $closing) {}
7    function onCreate() {}
8    function onClose() {}
9}
10class bar extends php_user_filter {
11    function filter($in, $out, &$consumed) {}
12    function onCreate() {}
13    function onClose() {}
14}
15?>
16--EXPECTF--
17Strict Standards: Declaration of bar::filter() should be compatible with php_user_filter::filter($in, $out, &$consumed, $closing) in %s on line %d
18