Annotation of embedaddon/php/Zend/tests/argument_restriction_001.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #55719 (Argument restriction should come with a more specific error message)
                      3: --FILE--
                      4: <?php
                      5: Class Base {
                      6:        public function &test($foo, array $bar, $option = NULL, $extra = "lllllllllllllllllllllllllllllllllllllllllllllllllll") {
                      7:        }       
                      8: }
                      9: 
                     10: class Sub extends Base {
                     11:        public function &test() {
                     12:        }       
                     13: }
                     14: ?>
                     15: --EXPECTF--
                     16: Strict Standards: Declaration of Sub::test() should be compatible with & Base::test($foo, array $bar, $option = NULL, $extra = 'llllllllll...') in %sargument_restriction_001.php on line %d 

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