summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/property002.phpt
blob: 4a9219219f2fa7a3e84b08cf4b92066602648bed (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
--TEST--
Non-conflicting properties should work just fine.
--FILE--
<?php

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();
?>
--EXPECT--
bool(true)
bool(true)
hello World!