File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / classes / type_hinting_005b.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, 1 month 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 "No hint, should be array.\n";
    8: Class D extends C { function f($a) {} }
    9: ?>
   10: ==DONE==
   11: --EXPECTF--
   12: Strict Standards: Declaration of D::f() should be compatible with C::f(array $a) in %s on line 5
   13: No hint, should be array.
   14: ==DONE==

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