Annotation of embedaddon/php/ext/standard/tests/filters/php_user_filter_01.phpt, revision 1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>