summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/interface_001.phpt
blob: 46ebf73b57d1fe86823e6baa514c31732c002b83 (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
--TEST--
Using traits to implement interface
--FILE--
<?php

trait foo {
    public function abc() {
    }
}

interface baz {
    public function abc();
}

class bar implements baz {
    use foo;

}

new bar;
print "OK\n";

?>
--EXPECT--
OK