blob: 27361e04d2016e81b4116a663217208432f61275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--TEST--
Non-conflicting properties should work just fine.
--FILE--
<?php
error_reporting(E_ALL);
trait THello1 {
public $hello = "hello";
}
trait THello2 {
private $world = "World!";
}
class TraitsTest {
use THello1;
use THello2;
function test() {
echo $this->hello . ' ' . $this->world;
}
}
var_dump(property_exists('TraitsTest', 'hello'));
var_dump(property_exists('TraitsTest', 'world'));
$t = new TraitsTest;
$t->test();
?>
--EXPECTF--
bool(true)
bool(true)
hello World!
|