Annotation of embedaddon/php/tests/classes/type_hinting_005b.phpt, revision 1.1.1.2

1.1       misho       1: --TEST--
                      2: Check type hint compatibility in overrides with array hints.
                      3: --FILE--
                      4: <?php
                      5: Class C { function f(array $a) {} }
                      6: 
                      7: echo "No hint, should be array.\n";
                      8: Class D extends C { function f($a) {} }
                      9: ?>
                     10: ==DONE==
                     11: --EXPECTF--
1.1.1.2 ! misho      12: Strict Standards: Declaration of D::f() should be compatible with C::f(array $a) in %s on line 5
1.1       misho      13: No hint, should be array.
1.1.1.2 ! misho      14: ==DONE==

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