Annotation of embedaddon/php/tests/classes/type_hinting_005a.phpt, revision 1.1.1.1

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 "Compatible hint.\n";
                      8: Class D1 extends C { function f(array $a) {} }
                      9: 
                     10: echo "Class hint, should be array.\n";
                     11: Class D2 extends C { function f(SomeClass $a) {} }
                     12: ?>
                     13: ==DONE==
                     14: --EXPECTF--
                     15: Strict Standards: Declaration of D2::f() should be compatible with that of C::f() in %s on line 8
                     16: Compatible hint.
                     17: Class hint, should be array.
                     18: ==DONE==

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