File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / classes / type_hinting_005a.phpt
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:34 2012 UTC (12 years, 2 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

    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 C::f(array $a) in %s on line 8
   16: Compatible hint.
   17: Class hint, should be array.
   18: ==DONE==

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