File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
Zend /
tests /
traits /
bug60717.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue May 29 12:34:36 2012 UTC (12 years, 10 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
--TEST--
Bug #60717 (Order of traits in use statement can cause unexpected unresolved abstract method)
--FILE--
<?php
namespace HTML
{
interface Helper
{
function text($text);
function attributes(array $attributes = null);
function textArea(array $attributes = null, $value);
}
trait TextUTF8
{
function text($text) {}
}
trait TextArea
{
function textArea(array $attributes = null, $value) {}
abstract function attributes(array $attributes = null);
abstract function text($text);
}
trait HTMLAttributes
{
function attributes(array $attributes = null) { }
abstract function text($text);
}
class HTMLHelper implements Helper
{
use TextArea, HTMLAttributes, TextUTF8;
}
class HTMLHelper2 implements Helper
{
use TextArea, TextUTF8, HTMLAttributes;
}
class HTMLHelper3 implements Helper
{
use HTMLAttributes, TextArea, TextUTF8;
}
class HTMLHelper4 implements Helper
{
use HTMLAttributes, TextUTF8, TextArea;
}
class HTMLHelper5 implements Helper
{
use TextUTF8, TextArea, HTMLAttributes;
}
class HTMLHelper6 implements Helper
{
use TextUTF8, HTMLAttributes, TextArea;
}
$o = new HTMLHelper;
$o = new HTMLHelper2;
$o = new HTMLHelper3;
$o = new HTMLHelper4;
$o = new HTMLHelper5;
$o = new HTMLHelper6;
echo 'Done';
}
--EXPECT--
Done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>