php-8.0.30-src/Zend/tests/traits/bugs/overridding-conflicting-met...

32 lines
437 B
PHP

--TEST--
Overriding Conflicting Methods should not result in a notice/warning about collisions
--FILE--
<?php
error_reporting(E_ALL);
trait THello1 {
public function hello() {
echo 'Hello';
}
}
trait THello2 {
public function hello() {
echo 'Hello';
}
}
class TraitsTest {
use THello1;
use THello2;
public function hello() {
echo 'Hello';
}
}
$test = new TraitsTest();
$test->hello();
?>
--EXPECT--
Hello